diff --git a/.gitignore b/.gitignore index 352541c..0d9e97e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ hapi-data/ *.pyc tmp/ misc/tmp/ +.spyproject/ *~ .DS_Store hapiclient.egg-info/ @@ -10,4 +11,6 @@ MANIFEST .pytest_cache/ .ipynb_checkpoints/ .vscode/ -.idea/ \ No newline at end of file +.idea/ +anaconda3/ +build/ \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 8fb7926..71c0419 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,39 @@ -language: bash +language: python +jobs: + include: + - name: "Python 3.8 on Linux" + os: linux +# if: branch = master + dist: xenial + language: python + python: 3.8 + before_install: + - sudo rm /usr/bin/python + - sudo ln -s /usr/bin/python3 /usr/bin/python + - python3 -m pip install tox-travis -os: - - linux - - osx - - windows + - name: "Python 3.8 on macOS" + os: osx +# if: branch = master + osx_image: xcode11.6 # Python 3.8.0 running on macOS 10.14.6 + language: shell # 'language: python' is an error on Travis CI macOS + before_install: + - python3 --version + - python3 -m pip install --upgrade pip + - sudo pip install tox-travis + + - name: "Python 3.8 on Windows" + os: windows # Windows 10.0.17134 N/A Build 17134 +# if: branch = master + language: shell # 'language: python' is an error on Travis CI Windows + before_install: + - choco install python --version 3.8.8 + - python --version + - python -m pip install --upgrade pip + - python -m pip install tox-travis + env: PATH=/c/Python38:/c/Python38/Scripts:$PATH + +install: pip install --upgrade pip script: - - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi - - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install -y miniconda3; fi - - make repository-test-all + - tox -e short-test diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 0000000..56a8a47 --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,27 @@ +{ + "description": "Python client for HAPI", + "license": "other-open", + "title": "hapi-server/client-python:", + "version": "v0.2.1", + "upload_type": "software", + "publication_date": "2021-10-06", + "creators": [ + { + "affiliation": "George Mason University", + "name": "Bob Weigel" + } + ], + "access_right": "open", + "related_identifiers": [ + { + "scheme": "url", + "identifier": "https://github.com/hapi-server/client-python/tree/v0.2.1", + "relation": "isSupplementTo" + }, + { + "scheme": "doi", + "identifier": "10.5281/zenodo.5553155", + "relation": "isVersionOf" + } + ] +} diff --git a/CHANGES.txt b/CHANGES.txt index 4d280ad..0cfc280 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -66,3 +66,44 @@ v0.1.8: 2020-12-23 -- ff8e1ab Refactor hapi.py; clean up util.py v0.1.9b0: 2020-12-24 -- Remove hapiplot. Addresses #31. + 2020-12-28 -- 1c1d32f Fix time name conflict. +v0.1.9b1: + 2020-01-19 -- 53669fc Add missing hapitime.py file + 2020-01-19 -- Deleted v0.1.8 pip package b/c affected by above + 2020-01-20 -- 9f8b82f Use atol instead of rtol in readcompare.py + 2020-01-20 -- d3625e3 Fix for wrong error message (#24) +v0.1.9b2: + 2021-05-25 -- 23b659c Simplify dtype/length code +v0.1.9b3: + 2021-05-25 -- 8161460 Refactor Makefile +v0.1.9b4: + 2021-05-26 -- 2cabeb4 README.rst -> README.md + 2021-05-26 -- b825a54 Fix README file extension +v0.2.0: + 2021-06-16 -- 1e891a9 Tox and Travis update +v0.2.1: + 2021-06-16 -- Fix for long_description_content_type +v0.2.2: + 2021-06-16 -- Move import of joblib. + 2022-01-17 -- Full Unicode support and additional tests. +v0.2.3: + 2022-03-01 -- bf0cc88 Add allow_missing_Z in hapitime2datetime. +v0.2.4: + 2022-03-07 -- 88b0eb2 try/except on file read + 2022-03-29 -- 0042abb Fix for method=''. Closes #47. +v0.2.5: + 2022-06-30 -- 10df388 Update docstring for hapi() + 2022-07-12 -- 460c30b Final Unicode/Windows fixes +v0.2.6b: + 2022-08-08 -- 508fb20-3f1168c Add datetime2hapitime + 2022-08-08 -- 8bfef2f Allow start and stop to be None; https://github.com/hapi-server/client-python/issues/10 + 2022-09-21 -- bc70f3c CSV read failure; https://github.com/hapi-server/client-python/issues/62 + 2022-09-22 -- 373fdca Catch other CSV read failures +v0.2.6b1: + 2023-02-04 -- 2ef7cff Unicode fix; Log string fix + 2024-05-11 -- fba4ad3 Testing Updates +v0.2.6: + 2023-05-24 -- Use token for PyPi in Makefile +v0.2.7b1: + 2025-03-01 -- https://github.com/hapi-server/client-python/issues/76 + 2025-03-01 -- https://github.com/hapi-server/client-python/issues/78 \ No newline at end of file diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..51c3870 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,9 @@ +cff-version: 0.2.1 +message: "If you use this software, please cite it as below." +authors: + - family-names: Robert S. + given-names: Weigel + orcid: https://orcid.org/0000-0002-9521-5228 +title: hapi-server/client-python: +version: v0.2.1 +date-released: 2021-10-06 diff --git a/Makefile b/Makefile index ba404a8..26fa36f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ # Test hapi() data read functions using repository code: -# make repository-test # Test using $(PYTHON) -# make repository-test-all # Test on all versions in $(PYTHONVERS) +# make repository-test PYTHON=_PYTHON_ # Test using _PYTHON_ (e.g, python3.6) +# make repository-test-all # Test on all versions in $(PYTHONVERS) var below +# +# Beta releases: +# 1. Run make repository-test-all +# 2. For non-doc/formatting changes, update version in CHANGES.txt. +# 3. run `make version-update` if version changed in CHANGES.txt. +# 4. Commit and push # # Making a local package: # 1. Update CHANGES.txt to have a new version line @@ -8,6 +14,7 @@ # 3. make package-test-all # # Upload package to pypi.org +# 0. Remove the "b" in the version in CHANGES.txt # 1. make release # 2. Wait ~5 minutes and execute # 3. make release-test-all @@ -17,14 +24,18 @@ # 4. After package is finalized, create new version number in CHANGES.txt ending # with "b0" in setup.py and then run # make version-update -# git commit -a -m "Update version for next release" +# git commit -a -m "Update version for next release" # This will update the version information in the repository to indicate it # is now in a pre-release state. -# +# 5. Manually create a release at https://github.com/hapi-server/client-python/releases +# (could do this automatically using https://stackoverflow.com/questions/21214562/how-to-release-versions-on-github-through-the-command-line) # Notes: # 1. make repository-test tests with Anaconda virtual environment # make package-test and release-test tests with native Python virtual # environment. +# 2. Switch to using tox and conda-tox +# 3. 'pip install --editable . does not install develop dependencies, so +# 'python setup.py develop' is used. Won't need figure out when 2. is finished. URL=https://upload.pypi.org/ REP=pypi @@ -34,95 +45,122 @@ PYTHON=python3.8 PYTHON_VER=$(subst python,,$(PYTHON)) # Python versions to test -# TODO: Use tox. -PYTHONVERS=python3.8 python3.7 python3.6 python3.5 python2.7 +PYTHONVERS=python3.13 python3.12 python3.11 python3.10 python3.9 python3.8 python3.7 python3.6 python3.5 # VERSION is updated in "make version-update" step and derived # from CHANGES.txt. Do not edit. -VERSION=0.1.9b0 +VERSION=0.2.7b1 SHELL:= /bin/bash +#SHELL:= /c/Windows/system32/cmd LONG_TESTS=false -# Select this to have anaconda installed for you. -CONDA=./anaconda3 -# Use existing anaconda -# CONDA=/opt/anaconda3 -# CONDA=~/anaconda3 +CONDA=$(PWD)/anaconda3 -# ifeq ($(shell uname -s),MINGW64_NT-10.0-18362) -ifeq ($(TRAVIS_OS_NAME),windows) - # CONDA=/c/tools/anaconda3 - CONDA=/c/tools/miniconda3 +ifeq ($(OS),Windows_NT) + CONDA=C:/Users/weigel/git/client-python/anaconda3 + TMP=tmp/ endif - CONDA_ACTIVATE=source $(CONDA)/etc/profile.d/conda.sh; conda activate -# ifeq ($(shell uname -s),MINGW64_NT-10.0-18362) -ifeq ($(TRAVIS_OS_NAME),windows) - CONDA_ACTIVATE=source $(CONDA)/Scripts/activate; conda activate -endif - ################################################################################ +install: $(CONDA)/envs/$(PYTHON) + $(CONDA_ACTIVATE) $(PYTHON); pip install --editable . + @printf "\n--------------------------------------------------------------------------------\n" + @printf "To use created Anaconda environment, execute\n $(CONDA_ACTIVATE) $(PYTHON)" + @printf "\n--------------------------------------------------------------------------------\n" + test: make repository-test-all -# Test contents in repository using different python versions +#################################################################### +# Tox notes +# +# Ideally local tests would use same commands as .tox.ini and .travis.yml. +# +# To use tox -e short-test, it seems we need to install and activate +# each version of python. So using tox locally does not seem to make +# things much simpler than `make repository-test`, which installs +# conda and virtual enviornments and runs tests. +# +# However, Travis tests use tox-travis and it seems creation of +# virtual environment is done automatically. +# +#repository-test-all-tox: +# tox -e short-test +#repository-test-tox: +# # Does not work +# tox -e py$(subst .,,$(PYTHON_VER)) short-test +#################################################################### + +# Test contents in repository using different Python versions repository-test-all: + @make clean + #rm -rf $(CONDA) @ for version in $(PYTHONVERS) ; do \ make repository-test PYTHON=$$version ; \ done repository-test: @make clean - make condaenv PYTHON=$(PYTHON) - - # https://stackoverflow.com/questions/30306099/pip-install-editable-vs-python-setup-py-develop - $(CONDA_ACTIVATE) $(PYTHON); \ - pip install pytest deepdiff; pip install --editable . - # Previously used: - # $(CONDA_ACTIVATE) $(PYTHON); $(PYTHON) setup.py develop | grep "Best" + $(CONDA_ACTIVATE) $(PYTHON); pip install pytest deepdiff; pip install . ifeq (LONG_TESTS,true) - $(CONDA_ACTIVATE) $(PYTHON); python -m pytest -v -m 'long' hapiclient/test/test_hapi.py + $(CONDA_ACTIVATE) $(PYTHON); python -m pytest --tb=short -v -m 'long' hapiclient/test/test_hapi.py else - $(CONDA_ACTIVATE) $(PYTHON); python -m pytest -v -m 'short' hapiclient/test/test_hapi.py + $(CONDA_ACTIVATE) $(PYTHON); python -m pytest --tb=short -v -m 'short' hapiclient/test/test_hapi.py endif $(CONDA_ACTIVATE) $(PYTHON); python -m pytest -v hapiclient/test/test_chunking.py $(CONDA_ACTIVATE) $(PYTHON); python -m pytest -v hapiclient/test/test_hapitime2datetime.py + $(CONDA_ACTIVATE) $(PYTHON); python -m pytest -v hapiclient/test/test_datetime2hapitime.py $(CONDA_ACTIVATE) $(PYTHON); python -m pytest -v hapiclient/test/test_hapitime_reformat.py ################################################################################ ################################################################################ # Anaconda install CONDA_PKG=Miniconda3-latest-Linux-x86_64.sh +CONDA_PKG_PATH=/tmp/$(CONDA_PKG) ifeq ($(shell uname -s),Darwin) CONDA_PKG=Miniconda3-latest-MacOSX-x86_64.sh + CONDA_PKG_PATH=/tmp/$(CONDA_PKG) +endif +ifeq ($(OS),Windows_NT) + CONDA_PKG=Miniconda3-latest-Windows-x86_64.exe + CONDA_PKG_PATH=C:/tmp/$(CONDA_PKG) endif -condaenv: -# ifeq ($(shell uname -s),MINGW64_NT-10.0-18362) -ifeq ($(TRAVIS_OS_NAME),windows) - cp $(CONDA)/Library/bin/libcrypto-1_1-x64.* $(CONDA)/DLLs/ - cp $(CONDA)/Library/bin/libssl-1_1-x64.* $(CONDA)/DLLs/ +activate: + @echo "On command line enter:" + @echo "$(CONDA_ACTIVATE) $(PYTHON)" - # $(CONDA)/Scripts/conda config --set ssl_verify no - $(CONDA)/Scripts/conda create -y --name $(PYTHON) python=$(PYTHON_VER) -else +condaenv: make $(CONDA)/envs/$(PYTHON) PYTHON=$(PYTHON) -endif -$(CONDA)/envs/$(PYTHON): ./anaconda3 +$(CONDA)/envs/$(PYTHON): $(CONDA) +ifeq ($(OS),Windows_NT) + $(CONDA_ACTIVATE); \ + $(CONDA)/Scripts/conda \ + create -y --name $(PYTHON) python=$(PYTHON_VER) +else $(CONDA_ACTIVATE); \ - $(CONDA)/bin/conda create -y --name $(PYTHON) python=$(PYTHON_VER) + $(CONDA)/bin/conda \ + create -y --name $(PYTHON) python=$(PYTHON_VER) +endif -./anaconda3: /tmp/$(CONDA_PKG) - bash /tmp/$(CONDA_PKG) -b -p $(CONDA) +$(CONDA): $(CONDA_PKG_PATH) +ifeq ($(OS),Windows_NT) + # Not working; path is not set + #start "$(CONDA_PKG_PATH)" /S /D=$(CONDA) + echo "!!! Install miniconda3 into $(CONDA) manually by executing 'start $(PWD)/anaconda3'. Then re-execute make command." + exit 1 +else + test -d anaconda3 || bash $(CONDA_PKG_PATH) -b -p $(CONDA) +endif -/tmp/$(CONDA_PKG): - curl https://repo.anaconda.com/miniconda/$(CONDA_PKG) > /tmp/$(CONDA_PKG) +$(CONDA_PKG_PATH): + curl https://repo.anaconda.com/miniconda/$(CONDA_PKG) > $(CONDA_PKG_PATH) ################################################################################ ################################################################################ @@ -134,10 +172,11 @@ package: package-test-all: @ for version in $(PYTHONVERS) ; do \ - make repository-test-plots PYTHON=$$version ; \ + make repository-test PYTHON=$$version ; \ done env-$(PYTHON): + rm -rf env-$(PYTHON) $(CONDA_ACTIVATE) $(PYTHON); \ conda install -y virtualenv; \ $(PYTHON) -m virtualenv env-$(PYTHON) @@ -145,17 +184,21 @@ env-$(PYTHON): package-test: make package make env-$(PYTHON) + make package-venv-test PACKAGE='dist/hapiclient-$(VERSION).tar.gz' + +package-venv-test: + cp hapi_demo.py /tmp # TODO: Explain why needed. cp hapi_demo.py /tmp source env-$(PYTHON)/bin/activate && \ - pip install pytest && \ - pip install deepdiff && \ + pip install pytest deepdiff ipython && \ + pip uninstall -y hapiplot && \ + pip install --pre hapiplot && \ pip uninstall -y hapiclient && \ - pip install dist/hapiclient-$(VERSION).tar.gz \ + pip install --pre '$(PACKAGE)' \ --index-url $(URL)/simple \ --extra-index-url https://pypi.org/simple && \ - env-$(PYTHON)/bin/python /tmp/hapi_demo.py && \ env-$(PYTHON)/bin/pytest -v -m 'short' hapiclient/test/test_hapi.py -################################################################################ + env-$(PYTHON)/bin/ipython /tmp/hapi_demo.py ################################################################################ # Release a package to pypi.org @@ -166,9 +209,8 @@ release: release-upload: pip install twine - echo "rweigel, t1p" twine upload \ - -r $(REP) dist/hapiclient-$(VERSION).tar.gz \ + -r $(REP) dist/hapiclient-$(VERSION).tar.gz -u __token__ \ && echo Uploaded to $(subst upload.,,$(URL))/project/hapiclient/ release-test-all: @@ -177,18 +219,20 @@ release-test-all: done release-test: - rm -rf env - source activate $(PYTHON); pip install virtualenv; $(PYTHON) -m virtualenv env + make env-$(PYTHON) + make release-venv-test PYTHON=$(PYTHON) + +release-venv-test: + cp hapi_demo.py /tmp # TODO: Explain why needed. cp hapi_demo.py /tmp - source env/bin/activate && \ - pip install pytest && \ - pip install deepdiff && \ - pip install 'hapiclient==$(VERSION)' \ - --index-url $(URL)/simple \ - --extra-index-url https://pypi.org/simple && \ - env/bin/pytest -v hapiclient/test/test_hapi.py && \ - env/bin/python /tmp/hapi_demo.py -################################################################################ + source env-$(PYTHON)/bin/activate && \ + pip install pytest deepdiff ipython && \ + pip uninstall -y hapiplot && \ + pip install --pre hapiplot && \ + pip uninstall -y hapiclient && \ + pip install hapiclient && \ + env-$(PYTHON)/bin/pytest -v -m 'short' hapiclient/test/test_hapi.py && \ + env-$(PYTHON)/bin/ipython /tmp/hapi_demo.py ################################################################################ # Update version based on content of CHANGES.txt @@ -196,7 +240,7 @@ version-update: python misc/version.py version-tag: - git commit -a -m "Last $(VERSION) commit" + - git commit -a -m "Last $(VERSION) commit" git push git tag -a v$(VERSION) -m "Version "$(VERSION) git push --tags @@ -204,10 +248,7 @@ version-tag: ################################################################################ # Install package in local directory (symlinks made to local dir) -install-local: - $(CONDA_ACTIVATE) $(PYTHON); pip install --editable . - -install: +install-pip: pip install 'hapiclient==$(VERSION)' --index-url $(URL)/simple conda list | grep hapiclient pip list | grep hapiclient diff --git a/README.md b/README.md new file mode 100644 index 0000000..d9b72df --- /dev/null +++ b/README.md @@ -0,0 +1,117 @@ +[![DOI](https://zenodo.org/badge/93170857.svg)](https://zenodo.org/badge/latestdoi/93170857) +[![Build Status](https://app.travis-ci.com/hapi-server/client-python.svg?branch=master)](https://app.travis-ci.com/hapi-server/client-python) + +**HAPI Client for Python** + +Basic usage examples for various HAPI servers are given in [hapi_demo.py](https://github.com/hapi-server/client-python/blob/master/hapi_demo.py) and the Examples section of a Jupyter Notebook hosted on Google Colab: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb#examples). + +# Installation + +```bash +pip install hapiclient --upgrade +# or +pip install 'git+https://github.com/hapi-server/client-python' --upgrade +``` + +The optional [hapiplot package](https://github.com/hapi-server/plot-python) provides basic preview plotting capabilities of data from a HAPI server. The [Plotting section](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb#plotting) of the `hapiclient` Jupyter Notebook shows how to plot the output of `hapiclient` using many other plotting libraries. + +To install `hapiplot`, use + +```bash +python -m pip install hapiplot --upgrade +# or +python -m pip install 'git+https://github.com/hapi-server/plot-python' --upgrade +``` + +See the [Appendix](#appendix) for a fail-safe installation method. + +# Basic Example + +```python +# Get Dst index from CDAWeb HAPI server +from hapiclient import hapi + +# See http://hapi-server.org/servers/ for a list of +# other HAPI servers and datasets. +server = 'https://cdaweb.gsfc.nasa.gov/hapi' +dataset = 'OMNI2_H0_MRG1HR' +start = '2003-09-01T00:00:00' +stop = '2003-12-01T00:00:00' +parameters = 'DST1800' +opts = {'logging': True} + +# Get data +data, meta = hapi(server, dataset, parameters, start, stop, **opts) +print(meta) +print(data) + +# Plot all parameters +from hapiplot import hapiplot +hapiplot(data, meta) +``` + +# Documentation + +Basic usage examples for various HAPI servers are given in [hapi_demo.py](https://github.com/hapi-server/client-python/blob/master/hapi_demo.py>) and the [Examples section](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb#examples) of a Jupyter Notebook hosted on Google Colab. + +See http://hapi-server.org/servers/ for a list of HAPI servers and datasets. + +All of the features are extensively demonstrated in [hapi_demo.ipynb](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb#data-model), a Jupyter Notebook that can be viewed an executed on Google Colab. + +# Metadata Model + +See also the examples in the [Metadata Model section](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb) of the `hapiclient` Jupyter Notebook. + +The HAPI client metadata model is intentionally minimal and closely follows that of the [HAPI metadata model](https://github.com/hapi-server/data-specification). We expect that another library will be developed that allows high-level search and grouping of information from HAPI servers. See also [issue #106](https://github.com/hapi-server/data-specification/issues/106). + +# Data Model and Time Format + +See also the examples in the [Data Model section](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb) of the `hapiclient` Jupyter Notebook. The examples include + +1. Fast and well-tested conversion from ISO 8601 timestamp strings to Python `datetime` objects +2. Putting the content of `data` in a Pandas `DataFrame` object +3. Creating an Astropy NDArray + +A request for data of the form +``` +data, meta = hapi(server, dataset, parameters, start, stop) +``` + +returns the [Numpy N-D array](https://docs.scipy.org/doc/numpy-1.15.1/user/quickstart.html) `data` and a Python dictionary `meta` from a HAPI-compliant data server `server`. The structure of `data` and `meta` mirrors the structure of a response from a HAPI server. + +The HAPI client data model is intentionally basic. There is an ongoing discussion of a data model for Heliophysics data among the [PyHC community](https://heliopython.org/). When this data model is complete, a function that converts `data` and `meta` to that data model will be included in the `hapiclient` package. + +# Development + +```bash +git clone https://github.com/hapi-server/client-python +cd client-python; python -m pip install -e . +``` + +or, create an isolated Anaconda installation (downloads and installs latest Miniconda3) using + +``` bash +make install PYTHON=python3.6 +# Execute command displayed to activate isolated environment +``` + +The command `pip install -e .` creates symlinks so that the local package is +used instead of an installed package. You may need to execute `python -m pip uninstall hapiclient` to ensure the local package is used. To check the version installed, use `python -m pip list | grep hapiclient`. + +To run tests before a commit, execute + +```bash +make repository-test +``` + +To run an individual unit test in a Python session, use, e.g., + +```python +from hapiclient.test.test_hapi import test_reader_short +test_reader_short() +``` + +# Contact + +Submit bug reports and feature requests on the [repository issue +tracker](https://github.com/hapi-server/client-python/issues>). diff --git a/README.rst b/README.rst deleted file mode 100644 index edc082f..0000000 --- a/README.rst +++ /dev/null @@ -1,131 +0,0 @@ -.. image:: https://travis-ci.org/hapi-server/client-python.svg?branch=master - :target: https://travis-ci.org/hapi-server/client-python - -HAPI client for Python 2/3 -============================== - -Installation ------------- - -.. code:: bash - - pip install hapiclient --upgrade - # or - pip install 'git+https://github.com/hapi-server/client-python' --upgrade - - pip install hapiplot --upgrade - # or - pip install 'git+https://github.com/hapi-server/plot-python' --upgrade - -See the `Appendix <#Appendix>`__ for a fail-safe installation method. - -Basic Example -------------- - -.. code:: python - - # Get Dst index from CDAWeb HAPI server - from hapiclient import hapi - - # See http://hapi-server.org/servers/ for a list of - # other HAPI servers and datasets. - server = 'https://cdaweb.gsfc.nasa.gov/hapi' - dataset = 'OMNI2_H0_MRG1HR' - start = '2003-09-01T00:00:00' - stop = '2003-12-01T00:00:00' - parameters = 'DST1800' - opts = {'logging': True} - - # Get data - data, meta = hapi(server, dataset, parameters, start, stop, **opts) - print(meta) - print(data) - - # Plot all parameters - from hapiplot import hapi - hapiplot(data, meta) - - -Documentation -------------- - -Basic usage examples for various HAPI servers are given in `hapi_demo.py `__ - -See http://hapi-server.org/servers/ for a list of HAPI servers and datasets. - -All of the features are extensively demonstrated in the `hapi_demo.ipynb `__ Jupyter Notebook. - - -Data Model and Time Format --------------------------- - -A request for data of the form -``` -data, meta = hapi(server, dataset, parameters, start, stop) -``` - -returns the [Numpy N-D array](https://docs.scipy.org/doc/numpy-1.15.1/user/quickstart.html) `data` and a Python dictionary `meta` from a HAPI-compliant data server `server`. The structure of `data` and `meta` mirrors the structure of a response from a HAPI server. - -The HAPI client data model is intentionally basic. There is an ongoing discussion of a data model for Heliophysics data among the `PyHC community `_. When this data model is complete, a function that converts `data` and `meta` to that data model will be included in the `hapiclient` package. - -Examples of transforming and manipulating `data` is given in a `Jupyter Notebook `_. The examples include - -# Fast and well-tested conversion from ISO 8601 timestamp strings to Python `datetime` objects -# Putting the content of `data` in a Pandas `DataFrame` object -# Creating an Astropy NDArray - - -Development ------------ - -.. code:: bash - - git clone https://github.com/hapi-server/client-python - cd client-python; python setup.py develop - -(The command python setup.py develop creates symlinks so that the local package is -used instead of an installed package. You may need to execute ``pip uninstall hapiclient`` -first to ensure the local package is used.) - -To run tests before a commit, execute - -.. code:: bash - - make repository-test - -To run an individual unit test in a Python session, use, e.g., - -.. code:: python - - from hapiclient.test.test_hapi import test_reader_short - test_reader_short() - -Contact -------- - -Submit bug reports and feature requests on the `repository issue -tracker `__. - -Appendix --------- - -Fail-safe installation - -Python command line: - -.. code:: python - - import os - print(os.popen("pip install hapiclient").read()) - -The above executes and displays the output of the operating system -command ``pip install hapiclient`` using the shell environment -associated with that installation of Python. - -This method addresses a problem that is sometimes encountered when -attempting to use ``pip`` packages in Anaconda. To use a ``pip`` package -in Anaconda, one must use the version of ``pip`` installed with Anaconda -(it is usually under a subdirectory with the name ``anaconda/``) as -opposed to the one installed with the operating system. To see the -location of ``pip`` used in a given Python session, enter -``print(os.popen("which pip").read())``. diff --git a/hapi_demo.py b/hapi_demo.py index f71da97..7e79adc 100644 --- a/hapi_demo.py +++ b/hapi_demo.py @@ -22,11 +22,28 @@ def main(): except Exception as e: print("\033[0;31mError:\033[0m " + str(e)) + +def testdata(): + + from hapiclient import hapi + + server = 'http://hapi-server.org/servers/TestData2.0/hapi' + dataset = 'dataset1' + parameters = 'scalar' + start = '1970-01-01T00:00:00' + stop = '1970-01-02T00:01:00' + parameters = 'scalar,vector' + opts = {'logging': True, 'usecache': True} + + data, meta = hapi(server, dataset, parameters, start, stop, **opts) + + # Plot all parameters + hapiplot(data, meta) + def omniweb(): from hapiclient import hapi - from hapiplot import hapiplot - + server = 'https://cdaweb.gsfc.nasa.gov/hapi' dataset = 'OMNI2_H0_MRG1HR' start = '2003-09-01T00:00:00' @@ -39,7 +56,8 @@ def omniweb(): # Plot all parameters hapiplot(data, meta) - + + def sscweb(): from hapiclient import hapi @@ -53,9 +71,11 @@ def sscweb(): parameters = 'X_GSE,Y_GSE,Z_GSE' opts = {'logging': True, 'usecache': True} data, meta = hapi(server, dataset, parameters, start, stop, **opts) + hapiplot(data, meta, **opts) -def cdaweb(): + +def cdaweb(): from hapiclient import hapi from hapiplot import hapiplot @@ -93,6 +113,7 @@ def cdaweb(): servers = hapi(logging=True) # servers is an array of URLs print('') + def cassini(): from hapiclient import hapi @@ -110,6 +131,7 @@ def cassini(): popts = {'logging': False, 'logy': True, 'logz': True} hapiplot(data, meta, **popts) + def lisird(): from hapiclient import hapi @@ -123,7 +145,9 @@ def lisird(): opts = {'usecache': True, 'logging': True} data, meta = hapi(server, dataset, parameters, start, stop, **opts) - hapiplot(data, meta) + + hapiplot(data, meta) + if __name__ == '__main__': try: diff --git a/hapiclient/__init__.py b/hapiclient/__init__.py index d558bb7..e948c2c 100644 --- a/hapiclient/__init__.py +++ b/hapiclient/__init__.py @@ -4,7 +4,17 @@ # Allow "from hapiclient import hapitime2datetime" from hapiclient.hapitime import hapitime2datetime +# Allow "from hapiclient import datetime2hapitime" +from hapiclient.hapitime import datetime2hapitime + # Allow "from hapiclient import HAPIError" from hapiclient.util import HAPIError -__version__ = '0.1.9b0' +__version__ = '0.2.7b1' + +import sys +if sys.version_info[0] < 3: + # Python 2.7 + reload(sys) + sys.setdefaultencoding('utf8') + diff --git a/hapiclient/hapi.py b/hapiclient/hapi.py index 1892eb2..4247aab 100644 --- a/hapiclient/hapi.py +++ b/hapiclient/hapi.py @@ -14,7 +14,7 @@ from hapiclient.hapitime import hapitime2datetime, hapitime_reformat from hapiclient.util import setopts, log, warning, error -from hapiclient.util import urlopen, urlretrieve, jsonparse +from hapiclient.util import urlopen, urlretrieve, jsonparse, unicode_error_message def subset(meta, params): @@ -99,12 +99,44 @@ def request2path(*args): else: cachedirectory = args[5] - # url subdirectory + args = list(args) + + # Replace forbidden characters in directory and filename + # Replacements assume that there will be no name collisions, + # e.g., one parameter named abc-< and another abc-@lt@. + # This also introduces an incompatability between caches on Windows + # Unix. + import platform + if platform.system() == 'Windows': + # List and code from responses in + # https://stackoverflow.com/q/1976007 + reps = ( + ('<', '@lt@'), + ('>', '@gt@'), + (':', '@colon@'), + ('"', '@doublequote@'), + ('/', '@forwardslash@'), + ('/', '@backslash@'), + ('\\|', '@pipe@'), + ('\\?', '@questionmark@'), + ('\\*', '@asterisk@') + ) + + for element in reps: + args[1] = re.sub(element[0], element[1], args[1]) + args[2] = re.sub(element[0], element[1], args[2]) + + else: + args[1] = re.sub('/','@forwardslash@',args[1]) + args[2] = re.sub('/','@forwardslash@',args[2]) + + # To shorten filenames. + args[3] = re.sub(r'-|:|\.|Z', '', args[3]) + args[4] = re.sub(r'-|:|\.|Z', '', args[4]) + + # URL subdirectory urldirectory = server2dirname(args[0]) - fname = '%s_%s_%s_%s' % (re.sub('/', '_', args[1]), - re.sub(',', '-', args[2]), - re.sub(r'-|:|\.|Z', '', args[3]), - re.sub(r'-|:|\.|Z', '', args[4])) + fname = '%s_%s_%s_%s' % (args[1], args[2], args[3], args[4]) return os.path.join(cachedirectory, urldirectory, fname) @@ -131,7 +163,7 @@ def hapiopts(): 'usecache': False, 'server_list': 'https://github.com/hapi-server/servers/raw/master/all.txt', 'format': 'binary', - 'method': 'pandas', + 'method': '', 'parallel': False, 'n_parallel': 5, 'n_chunks': None, @@ -144,64 +176,65 @@ def hapiopts(): def hapi(*args, **kwargs): """Request data from a HAPI server. - Version: 0.1.9 + Version: 0.2.7b1 Examples ---------- - `Jupyter Notebook _` + `Jupyter Notebook `_ Parameters ---------- - server : str - A string with the URL to a HAPI compliant server. (A HAPI URL - always ends with "/hapi"). - dataset : str + server: str + A string with the URL to a HAPI compliant server. (A HAPI URL \ + always ends with ``/hapi``). + dataset: str A string specifying a dataset from a `server` parameters: str - A Comma-separated list of parameters in `dataset` + A comma-separated list of parameters in `dataset` start: str The start time of the requested data - stop: str + stop: str or None The end time of the requested data; end times are exclusive - the last data record returned by a HAPI server should have a timestamp - before `start`. - options : dict + before `start`. If `None`, `stopDate` is used. + options: dict + `logging` (``False``) - Log to console - `logging` (False) - Log to console + `cache` (``True``) - Save responses and processed responses in cachedir - `cache` (True) - Save responses and processed responses in cachedir + `cachedir` (``'./hapi-data'``) - `cachedir` (./hapi-data) + `usecache` (``True``) - Use files in `cachedir` if found - `usecache` (True) - Use files in `cachedir` if found + `serverlist` (``'https://github.com/hapi-server/servers/raw/master/all.txt'``) - `serverlist` (https://github.com/hapi-server/servers/raw/master/all.txt) + `format` (``'binary'``) ``'binary'`` or ``'csv'``; ``'csv``' will force the use of ``format=csv`` in request to server. - `parallel` (False) If true, make up to `n_parallel` requests to - server in parallel (uses threads) + `parallel` (``False``) If ``True``, make up to `n_parallel` requests to server \ + in parallel (uses threads) - `n_parallel` (5) Maximum number of parallel requests to server. + `n_parallel` (``5``) Maximum number of parallel requests to server.\ Max allowed is 5. - `n_chunks` (None) Get data by making `n_chunks` requests by splitting - requested time range. `dt_chunk` is ignored if `n_chunks` is + `n_chunks` (``None``) Get data by making `n_chunks` requests by splitting \ + requested time range. `dt_chunk` is ignored if `n_chunks` is \ not `None`. Allowed values are integers > 1. - `dt_chunk` ('infer') For requests that span a time range larger - than the default chunk size for a given dataset cadence, the - client will split request into chunks if `dt_chunk` is not + `dt_chunk` (``'infer'``) For requests that span a time range larger \ + than the default chunk size for a given dataset cadence, the \ + client will split request into chunks if `dt_chunk` is not \ `None`. - Allowed values of `dt_chunk` are 'infer', `None`, and an ISO 8601 - duration that is unambiguous (durations that include Y and M are not - allowed). The default chunk size is determined based on the cadence + Allowed values of `dt_chunk` are 'infer', `None`, and an ISO 8601 \ + duration that is unambiguous (durations that include Y and M are not \ + allowed). The default chunk size is determined based on the cadence \ of the dataset requested according to - cadence < PT1S dt_chunk='PT1H' - PT1S <= cadence <= PT1H dt_chunk='P1D' - cadence > PT1H dt_chunk='P30D' - cadence >= P1D dt_chunk='P365D' + * cadence < PT1S dt_chunk='PT1H' + * PT1S <= cadence <= PT1H dt_chunk='P1D' + * cadence > PT1H dt_chunk='P30D' + * cadence >= P1D dt_chunk='P365D' If the dataset does not have a cadence listed in its metadata, an attempt is made to infer the cadence by requesting a small time range @@ -215,58 +248,72 @@ def hapi(*args, **kwargs): full chunk, and trimming is performed. For example, Cadence = PT1M and request for + start/stop=1999-11-12T00:10:00/stop=1999-11-12T12:09:00 + Chunk size is P1D and requested time range < 1/2 of this => Default behavior + Cadence = PT1M and request for + start/stop=1999-11-12T00:10:00/1999-11-12T12:10:00 + Chunk size is P1D and requested time range >= 1/2 of this => One request with start/stop=1999-11-12/1999-11-13 - and trim performed + and trim performed + Cadence = PT1M and request for + start/stop=1999-11-12T00:10:00/1999-11-13T12:09:00 + Chunk size is P1D and requested time range > than this => Two requests: - (1) start/stop=1999-11-12/start=1999-11-13 - (2) start/stop=1999-11-13/start=1999-11-14 - and trim performed + + 1. start/stop=1999-11-12/start=1999-11-13 + 2. start/stop=1999-11-13/start=1999-11-14 + + and trim performed Returns ------- - result : various + result: varies `result` depends on the input parameters. - servers = hapi() returns a list of available HAPI server URLs from + ``servers = hapi()`` returns a list of available HAPI server URLs from https://github.com/hapi-server/data-specification/blob/master/all.txt - dataset = hapi(server) returns a dict of datasets available from a + ``dataset = hapi(server)`` returns a dict of datasets available from a URL given by the string `server`. The dictionary structure follows the - HAPI JSON structure. + `HAPI catalog response JSON structure `_. + + ``parameters = hapi(server, dataset)`` returns a dict containing the HAPI info metadata for all parameters + in the string `dataset`. The dictionary structure follows the + `HAPI info response JSON structure `_. + + ``meta = hapi(server, dataset, parameters)`` returns a dict containing the HAPI info metadata + for each parameter in the comma-separated string ``parameters``. The + dictionary structure follows + `HAPI info response JSON structure `_. - parameters = hapi(server, dataset) returns a dictionary of parameters - in the string `dataset`. The dictionary structure follows the HAPI JSON - structure. + ``data, = hapi(server, dataset, parameters, start, stop)`` returns a + NumPy array with named fields with field names corresponding to ``parameters``, e.g., if + ``parameters = 'scalar,vector'`` and the number of records in the time + range ``start`` <= t < ``stop`` returned is N, then - metadata = hapi(server, dataset, parameters) returns metadata - associated each parameter in the comma-separated string `parameters`. The - dictionary structure follows the HAPI JSON structure. + ``data['scalar']`` is a NumPy array of shape (N) - data = hapi(server, dataset, parameters, start, stop) returns a - dictionary with elements corresponding to `parameters`, e.g., if - `parameters` = 'scalar,vector' and the number of records in the time - range `start` <= t < `stop` returned is N, then + ``data['vector']`` is a NumPy array of shape (N,3) - data['scalar'] is a NumPy array of shape (N) - data['vector'] is a NumPy array of shape (N,3) - data['Time'] is a NumPy array of byte literals with shape (N). + ``data['Time']`` is a NumPy array of byte literals with shape (N). - Byte literal times can be converted to Python datetimes using + Byte literal times can be converted to Python ``datetimes`` using - dtarray = hapitime2datetime(data['Time']) + ``dtarray = hapitime2datetime(data['Time'])`` - data, meta = hapi(server, dataset, parameters, start, stop) returns - the metadata for parameters in `meta`. + ``data, meta = hapi(server, dataset, parameters, start, stop)`` returns + the HAPI info metadata for parameters in `meta` (and should contain the + same content as ``meta = hapi(server, dataset, parameters)``). References @@ -290,19 +337,19 @@ def hapi(*args, **kwargs): START = START + 'Z' if nin > 4: STOP = args[4] - if STOP[-1] != 'Z': + if STOP is not None and STOP[-1] != 'Z': # TODO: Consider warning. STOP = STOP + 'Z' # Override defaults opts = setopts(hapiopts(), kwargs) - assert (opts['logging'] in [True, False]) - assert (opts['cache'] in [True, False]) - assert (opts['usecache'] in [True, False]) - assert (opts['format'] in ['binary', 'csv']) + assert (opts['logging'] in [True, False]), "logging keyword must be True of False" + assert (opts['cache'] in [True, False]), "cache keyword must be True of False" + assert (opts['usecache'] in [True, False]), "usecache keyword must be True of False" + assert (opts['format'] in ['binary', 'csv']), "format keyword must be 'csv' or 'binary'" assert (opts['method'] in ['', 'pandas', 'numpy', 'pandasnolength', 'numpynolength']) - assert (opts['parallel'] in [True, False]) + assert (opts['parallel'] in [True, False]), 'parallel keyword must be True or False' assert (isinstance(opts['n_parallel'], int) and opts['n_parallel'] > 1) assert (opts['n_chunks'] is None or isinstance(opts['n_chunks'], int) and opts['n_chunks'] > 0) assert (opts['dt_chunk'] in [None, 'infer', 'PT1H', 'P1D', 'P1M', 'P1Y']) @@ -310,6 +357,14 @@ def hapi(*args, **kwargs): from hapiclient import __version__ log('Running hapi.py version %s' % __version__, opts) + if nin > 1: + if nin > 1: + if unicode_error_message(DATASET) != "": + error(unicode_error_message(DATASET)) + if nin > 2: + if unicode_error_message(PARAMETERS) != "": + error(unicode_error_message(PARAMETERS)) + if nin == 0: # hapi() log('Reading %s' % opts['server_list'], opts) # decode('utf8') in following needed to make Python 2 and 3 types match. @@ -367,6 +422,12 @@ def hapi(*args, **kwargs): if nin == 5: # Data requested + if STOP is None: + log('STOP was given as None. Getting stopDate for dataset.', opts) + meta = hapi(SERVER, DATASET) + STOP = meta['stopDate'] + log('Using STOP = {STOP}', opts) + tic_totalTime = time.time() # URL to get CSV (will be used if binary response is not available) @@ -410,7 +471,7 @@ def hapi(*args, **kwargs): if not metaFromCache: # No cached metadata loaded so request it from server. - log('Reading %s' % urljson.replace(urld + '/', ''), opts) + log('Reading %s' % urld, opts) res = urlopen(urljson) meta = jsonparse(res, urljson) @@ -633,7 +694,7 @@ def nhapi(SERVER, DATASET, PARAMETERS, pSTART, pDELTA, i, **opts): if not 'binary' in sformats: opts['format'] = 'csv' - dt, cols, psizes, pnames, missing_length = compute_dt(meta, opts) + dt, cols, psizes, pnames, ptypes, missing_length = compute_dt(meta, opts) # length attribute required for all parameters when serving binary but # is only required for time parameter when serving CSV. This catches @@ -647,6 +708,21 @@ def nhapi(SERVER, DATASET, PARAMETERS, pSTART, pDELTA, i, **opts): # Read the data. toc0 is time to download to file or into buffer; # toc is time to parse. if opts['format'] == 'binary': + + if opts['method'] != '': + warnings.warn("Method argument is ignored when format='binary.") + + # Handle Unicode strings (since HAPI 3.1) + dto = [] + for i in range(len(dt)): + dto.append(dt[i]) + if isinstance(dt[i][1], str) and dt[i][1][0] == 'U' and meta['parameters'][i]['type'] == 'string': + # numpy.frombuffer() requires S instead of U + # because Unicode is variable length. + dt[i] = list(dt[i]) + dt[i][1] = dt[i][1].replace('U', 'S') + dt[i] = tuple(dt[i]) + # HAPI Binary if opts["cache"]: log('Writing %s to %s' % (urlbin, fnamebin.replace(urld + '/', '')), opts) @@ -655,7 +731,10 @@ def nhapi(SERVER, DATASET, PARAMETERS, pSTART, pDELTA, i, **opts): toc0 = time.time() - tic0 log('Reading and parsing %s' % fnamebin.replace(urld + '/', ''), opts) tic = time.time() - data = np.fromfile(fnamebin, dtype=dt) + try: + data = np.fromfile(fnamebin, dtype=dt) + except: + error('Malformed response? Could not read: {}'.format(urlbin)) else: from io import BytesIO log('Writing %s to buffer' % urlbin.replace(urld + '/', ''), opts) @@ -664,9 +743,35 @@ def nhapi(SERVER, DATASET, PARAMETERS, pSTART, pDELTA, i, **opts): toc0 = time.time() - tic0 log('Parsing BytesIO buffer.', opts) tic = time.time() - data = np.frombuffer(buff.read(), dtype=dt) + try: + data = np.frombuffer(buff.read(), dtype=dt) + except: + error('Malformed response? Could not read: {}'.format(urlbin)) + + + # Handle Unicode + time_name = meta['parameters'][0]['name'] + datanew = np.ndarray(shape=data[time_name].shape, dtype=dto) + for i in range(0, len(dto)): + name = meta['parameters'][i]['name'] + if sys.version_info[0] < 3: + # str() here is needed for Python 2.7. Numpy does not allow + # Unicode names in this version and if a dt is created + # with Unicode, it automatically converts Unicode chars to + # slash encoded ASCII. + name = str(name) + if data[name].size > 0 and isinstance(dt[i][1], str) and 'U' in dto[i][1]: + # Decode data. + datanew[name] = np.char.decode(data[name]) + else: + datanew[name] = data[name] + data = datanew + else: # HAPI CSV + + file_empty = False + if opts["cache"]: log('Writing %s to %s' % (urlcsv, fnamecsv.replace(urld + '/', '')), opts) tic0 = time.time() @@ -674,36 +779,59 @@ def nhapi(SERVER, DATASET, PARAMETERS, pSTART, pDELTA, i, **opts): toc0 = time.time() - tic0 log('Reading and parsing %s' % fnamecsv.replace(urld + '/', ''), opts) tic = time.time() + if os.path.getsize(fnamecsv) == 0: + file_empty = True + data = np.array([], dtype=dt) else: from io import StringIO log('Writing %s to buffer' % urlcsv.replace(urld + '/', ''), opts) tic0 = time.time() fnamecsv = StringIO(urlopen(urlcsv).read().decode()) + fnamecsv.seek(0, os.SEEK_END) + if fnamecsv.tell() == 0: + file_empty = True + data = np.array([], dtype=dt) + else: + fnamecsv.seek(0) toc0 = time.time() - tic0 log('Parsing StringIO buffer.', opts) tic = time.time() - if not missing_length: - # All string and isotime parameters have a length in metadata. - if opts['method'] == 'numpy': - data = np.genfromtxt(fnamecsv, dtype=dt, delimiter=',') - if opts['method'] == 'pandas': - # Read file into Pandas DataFrame - df = pandas.read_csv(fnamecsv, sep=',', header=None) - - # Allocate output N-D array (It is not possible to pass dtype=dt - # as computed to pandas.read_csv; pandas dtype is different - # from numpy's dtype.) - data = np.ndarray(shape=(len(df)), dtype=dt) - # Insert data from dataframe 'df' columns into N-D array 'data' - for i in range(0, len(pnames)): - shape = np.append(len(data), psizes[i]) - # In numpy 1.8.2 and Python 2.7, this throws an error - # for no apparent reason. Works as expected in numpy 1.10.4 - data[pnames[i]] = np.squeeze( - np.reshape(df.values[:, np.arange(cols[i][0], cols[i][1] + 1)], shape)) - else: - data = parse_missing_length(fnamecsv, dt, cols, psizes, pnames, opts) + if file_empty == False: + if not missing_length: + # All string and isotime parameters have a length in metadata. + if opts['method'] == 'numpy': + try: + data = np.genfromtxt(fnamecsv, + dtype=dt, + delimiter=',', + replace_space=' ', + deletechars='', + encoding='utf-8') + except: + error('Malformed response? Could not read response: {}'.format(urlcsv)) + if opts['method'] == '' or opts['method'] == 'pandas': + # Read file into Pandas DataFrame + try: + df = pandas.read_csv(fnamecsv, + sep=',', + header=None, + encoding='utf-8') + except: + error('Malformed response? Could not read response: {}'.format(urlcsv)) + # Allocate output N-D array (It is not possible to pass dtype=dt + # as computed to pandas.read_csv; pandas dtype is different + # from numpy's dtype.) + data = np.ndarray(shape=(len(df)), dtype=dt) + # Insert data from dataframe 'df' columns into N-D array 'data' + for i in range(0, len(pnames)): + shape = np.append(len(data), psizes[i]) + # In numpy 1.8.2 and Python 2.7, this throws an error + # for no apparent reason. Works as expected in numpy 1.10.4 + data[pnames[i]] = np.squeeze( + np.reshape(df.values[:, np.arange(cols[i][0], cols[i][1] + 1)], shape)) + else: + data = parse_missing_length(fnamecsv, dt, cols, psizes, pnames, ptypes, opts) toc = time.time() - tic @@ -726,24 +854,16 @@ def nhapi(SERVER, DATASET, PARAMETERS, pSTART, pDELTA, i, **opts): else: meta.update({"x_dataFile": fnamecsv}) + if opts["cache"]: + if not os.path.exists(opts["cachedir"]): + os.makedirs(opts["cachedir"]) + if not os.path.exists(urld): + os.makedirs(urld) - # Create cache directory - # Note that this should only technically be - # written if cache=True. - if not os.path.exists(opts["cachedir"]): - os.makedirs(opts["cachedir"]) - if not os.path.exists(urld): - os.makedirs(urld) - - # Write metadata to cache - # Note that this should only technically be - # written if cache=True. - log('Writing %s' % fnamepklx, opts) - f = open(fnamepklx, 'wb') - pickle.dump(meta, f, protocol=2) - f.close() + log('Writing %s' % fnamepklx, opts) + with open(fnamepklx, 'wb') as f: + pickle.dump(meta, f, protocol=2) - if opts["cache"]: log('Writing %s' % fnamenpy, opts) np.save(fnamenpy, data) @@ -756,7 +876,7 @@ def compute_dt(meta, opts): # Compute data type variable dt used to read HAPI response into # a data structure. - pnames, psizes, dt = [], [], [] + pnames, psizes, ptypes, dt = [], [], [], [] # Each element of cols is an array with start/end column number of # parameter. @@ -771,7 +891,10 @@ def compute_dt(meta, opts): # Extract sizes and types of parameters. for i in range(0, len(meta["parameters"])): - ptype = str(meta["parameters"][i]["type"]) + ptype = meta["parameters"][i]["type"] + + ptypes.append(ptype) + pnames.append(str(meta["parameters"][i]["name"])) if 'size' in meta["parameters"][i]: psizes.append(meta["parameters"][i]['size']) @@ -803,26 +926,19 @@ def compute_dt(meta, opts): if ptype == 'integer': dtype = (pnames[i], np.dtype('= start] + + This is much more efficient than converting ``data['Time']`` to ``datetime`` + objects and using ``datetime`` comparsion methods. + + Examples + -------- + :: + from hapiclient.hapitime import hapitime_reformat + hapitime_reformat('1989Z', '1989-01Z') # 1989Z + hapitime_reformat('1989-001T00:00Z', '1999-01-21Z') # 1999-021T00:00Z + + """ + + log('ref: {}'.format(form_to_match), {'logging': logging}) + log('given: {}'.format(given_form), {'logging': logging}) + + if 'T' in given_form: + dt_given = isodate.parse_datetime(given_form) + else: + # Remove trailing Z b/c parse_date does not implement of date with + # trailing Z, which is valid IS8601. + dt_given = isodate.parse_date(given_form[0:-1]) + + # Get format string, e.g., %Y-%m-%dT%H + format_ref = hapitime_format_str([form_to_match]) + + if '%f' in format_ref: + form_to_match = form_to_match.strip('Z') + form_to_match_fractional = form_to_match.split('.')[-1] + form_to_match = ''.join(form_to_match.split('.')[:-1]) + + given_form_fractional = '000000000' + given_form_fmt = hapitime_format_str([given_form]) + given_form = given_form.strip('Z') + + if '%f' in given_form_fmt: + given_form_fractional = given_form.split('.')[-1] + given_form = ''.join(given_form.split('.')[:-1]) + + converted = hapitime_reformat(form_to_match+'Z', given_form+'Z') + converted = converted.strip('Z') + + converted_fractional = '{:0<{}.{}}'.format(given_form_fractional, + len(form_to_match_fractional), + len(form_to_match_fractional)) + converted = converted + '.' + converted_fractional + + if 'Z' in format_ref: + return converted + 'Z' + + return converted + + converted = dt_given.strftime(format_ref) + + if len(converted) > len(form_to_match): + converted = converted[0:len(form_to_match)-1] + "Z" + + log('converted: {}'.format(converted), {'logging': logging}) + log('ref fmt: {}'.format(format_ref), {'logging': logging}) + log('----', {'logging': logging}) + + return converted + + +def hapitime_format_str(Time): + """Determine the time format string for a HAPI time. + Examples + -------- + :: + from hapiclient.hapitime import hapitime_reformat + hapitime_format_str(['1989Z']) # %YZ + hapitime_format_str(['1989-347Z']) # %Y-%jZ + hapitime_format_str(['2002-03-04T05:06Z']) # '%Y-%m-%dT%H:%MZ' + """ + + d = 0 + # Catch case where no trailing Z + # Technically HAPI ISO 8601 must have trailing Z; See + # https://github.com/hapi-server/data-specification/blob/master/ + # hapi-dev/HAPI-data-access-spec-dev.md#representation-of-time + if not re.match(r".*Z$", Time[0]): + d = 1 + + # Parse date part + # If h=True then hour given. + # If hm=True, then hour and minute given. + # If hms=True, them hour, minute, and second given. + (h, hm, hms) = (False, False, False) + + if len(Time[0]) == 4 or (len(Time[0]) == 5 and Time[0][-1] == "Z"): + fmt = '%Y' + elif re.match(r"[0-9]{4}-[0-9]{3}", Time[0]): + # YYYY-DOY format + fmt = "%Y-%j" + if len(Time[0]) >= 12 - d: + h = True + if len(Time[0]) >= 15 - d: + hm = True + if len(Time[0]) >= 18 - d: + hms = True + elif re.match(r"[0-9]{4}-[0-9]{2}", Time[0]): + # YYYY-MM-DD format + fmt = "%Y-%m" + if len(Time[0]) > 8: + fmt = fmt + "-%d" + if len(Time[0]) >= 14 - d: + h = True + if len(Time[0]) >= 17 - d: + hm = True + if len(Time[0]) >= 20 - d: + hms = True + else: + # TODO: Also check for invalid time string lengths. Use JSON schema + # regular expressions for allowed versions of ISO 8601. + # https://github.com/hapi-server/verifier-nodejs/tree/master/schemas + error('First time value %s is not a valid HAPI Time' % Time[0]) + + if h: + fmt = fmt + "T%H" + if hm: + fmt = fmt + ":%M" + if hms: + fmt = fmt + ":%S" + + if re.match(r".*\.[0-9].*$", Time[0]): + fmt = fmt + ".%f" + if re.match(r".*\.$", Time[0]) or re.match(r".*\.Z$", Time[0]): + fmt = fmt + "." + + if re.match(r".*Z$", Time[0]): + fmt = fmt + "Z" + + return fmt + + +def hapitime2datetime(Time, **kwargs): + """Convert HAPI timestamps to Python datetimes. + + A HAPI-compliant server represents time as an ISO 8601 string + (with several constraints - see the `HAPI specification + `_) + + `hapi()` reads these time strings into a NumPy array of Python byte literals. + This function converts these byte literals to Python datetime objects. + + Typical usage: + + :: + + data = hapi(...) # Get data + DateTimes = hapitime2datetime(data['Time']) # Convert + + + All HAPI time strings must have a trailing Z. This function only checks the + first element in Time array for compliance. + + Parameter + --------- + Time: + - A numpy array of HAPI timestamp byte literals + - A numpy array of HAPI timestamp strings + - A list of HAPI timestamp byte literals + - A list of HAPI timestamp strings + - A HAPI timestamp byte literal + - A HAPI timestamp strings + + Returns + ------- + A NumPy array Python of datetime objects with length = len(Time) + + Examples + -------- + All of the following return + + :: + + array([datetime.datetime(1970, 1, 1, 0, 0, tzinfo=)], dtype=object) + + :: + + from hapiclient.hapitime import hapitime2datetime + import numpy as np + + hapitime2datetime(np.array([b'1970-01-01T00:00:00.000Z'])) # array([datetime.datetime(1970, 1, 1, 0, 0, tzinfo=)], dtype=object) + hapitime2datetime(np.array(['1970-01-01T00:00:00.000Z'])) + + hapitime2datetime([b'1970-01-01T00:00:00.000Z']) + hapitime2datetime(['1970-01-01T00:00:00.000Z']) + + hapitime2datetime([b'1970-01-01T00:00:00.000Z']) + hapitime2datetime('1970-01-01T00:00:00.000Z') + """ + from datetime import datetime + + try: + # Python 2 + import pytz + tzinfo = pytz.UTC + except: + tzinfo = datetime.timezone.utc + + if type(Time) == list: + Time = np.asarray(Time) + if not all(list( map(lambda x: type(x) in [np.str_, np.bytes_, str, bytes], Time) )): + raise ValueError + + allow_missing_Z = False + if 'allow_missing_Z' in kwargs and kwargs['allow_missing_Z'] == True: + allow_missing_Z = True + + opts = kwargs.copy() + + if type(Time) == list: + Time = np.asarray(Time) + + if type(Time) != np.ndarray: + Time = np.asarray([Time]) + + if Time.size == 0: + error('Time array is empty.' + '\n') + return + + reshape = False + if Time.shape[0] != Time.size: + reshape = True + shape = Time.shape + Time = Time.flatten() + + if type(Time[0]) == np.bytes_: + try: + Time = Time.astype('U') + except: + error('Problem with time data. First value: ' + str(Time[0]) + '\n') + return + + tic = time.time() + + + if Time[0][-1] != "Z" and allow_missing_Z == False: + error("HAPI Times must have trailing Z. First element of input " + \ + "Time array does not have trailing Z.") + + try: + # This is the fastest conversion option. But it will fail on YYYY-DOY + # format and other valid^* ISO 8601 dates such as 2001-01-01T00:00:03.Z + # ^*Maybe not: https://github.com/hapi-server/client-python/issues/76 + # When infer_datetime_format is used, a TimeStamp object returned, + # which is the reason for the to_pydatetime() call. (When format=... is + # used, a datetime object is returned.) + # Although all HAPI timestamps will have trailing Z, in some cases, + # infer_datetime_format will not return a timezone-aware Timestamp. This + # is the reason for the call to tz_convert(tzinfo). + # TODO: Use hapitime_format_str() and pass this as format=... + Timeo = Time[0] + pandas_major_version = int(pandas.__version__.split('.')[0]) + if pandas_major_version < 2: + Time = pandas.to_datetime(Time, infer_datetime_format=True).tz_convert(tzinfo).to_pydatetime() + else: + Time = pandas.to_datetime(Time).tz_convert(tzinfo).to_pydatetime() + if reshape: + Time = np.reshape(Time, shape) + toc = time.time() - tic + log("Pandas processing time = %.4fs, first time = %s" % (toc, Timeo), opts) + return Time + except: + log("Pandas processing failed, first time = %s" % Time[0], opts) + + + # Convert from Python byte literals to unicode strings + # https://docs.scipy.org/doc/numpy/reference/generated/numpy.ndarray.astype.html + # https://www.b-list.org/weblog/2017/sep/05/how-python-does-unicode/ + Time = Time.astype('U') + # The new Time variable requires 4x more memory. + # Could save memory at cost of speed by decoding at each iteration below, e.g. + # Time[i] -> Time[i].decode('utf-8') + + pythonDateTime = np.empty(len(Time), dtype=object) + + fmt = hapitime_format_str(Time) + + # TODO: Will using pandas.to_datetime here with fmt work? + try: + parse_error = True + for i in range(0, len(Time)): + if Time[i][-1] != "Z" and allow_missing_Z == False: + parse_error = False + raise + pythonDateTime[i] = datetime.strptime(Time[i], fmt).replace(tzinfo=tzinfo) + except: + if parse_error: + error('Could not parse time value ' + Time[i] + ' using ' + fmt) + else: + error("HAPI Times must have trailing Z. Time[" + str(i) + "] = " \ + + Time[i] + " does not have trailing Z.") + + toc = time.time() - tic + log("Manual processing time = %.4fs, Input = %s, fmt = %s" % \ + (toc, Time[0], fmt), opts) + + if reshape: + pythonDateTime = np.reshape(pythonDateTime, shape) + + return pythonDateTime + + +def datetime2hapitime(dts): + """Convert Python datetime object(s) to ISO 8601 string(s) + + Typical usage: + :: + + from hapiclient import datetime2hapitime + import datetime + dts = [datetime.datetime(2000, 1, 1), datetime.datetime(2000, 1, 2)] + hapi_times = datetime2hapitime(dts) + print(hapi_times) + # ['2000-01-01T00:00:00.000000Z', '2000-01-02T00:00:00.000000Z'] + + Parameter + --------- + dts: + - A Python datetime object + - A list of Python datetime object(s) + + Returns + ------- + - A ISO 8601 string (if input is Python datetime object) + - A list of ISO 8601 strings (if input is list of Python datetime object) + """ + + single = False + if isinstance(dts, list) == False: + single = True + dts = [dts] + + hapi_times = [dt.strftime('%Y-%m-%dT%H:%M:%S.%fZ') for dt in dts] + + if single == True: + return hapi_times[0] + else: + return hapi_times diff --git a/hapiclient/test/compare.log b/hapiclient/test/compare.log new file mode 100644 index 0000000..977cb85 --- /dev/null +++ b/hapiclient/test/compare.log @@ -0,0 +1,120 @@ + +Dataset = dataset1; Parameter(s) = scalar; run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1405 0.1138 0.0001 +csv; pandas 0.1644 0.1104 0.0393 +csv; pandas; no len. 0.1285 0.1107 0.0026 +csv; numpy 0.1448 0.1293 0.0006 +csv; numpy; no len. 0.1528 0.1366 0.0005 + +Dataset = dataset1; Parameter(s) = scalar,vector; run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1406 0.1120 0.0001 +csv; pandas 0.1477 0.1280 0.0042 +csv; pandas; no len. 0.1406 0.1207 0.0032 +csv; numpy 0.1837 0.1678 0.0007 +csv; numpy; no len. 0.1488 0.1316 0.0008 + +Dataset = dataset1; Parameter(s) = ; run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.2053 0.1687 0.0004 +csv; pandas 0.1406 0.1138 0.0089 +csv; pandas; no len. 0.1630 0.1371 0.0081 +csv; numpy 0.1675 0.1461 0.0042 +csv; numpy; no len. 0.1487 0.1238 0.0069 + +Dataset = dataset1; Parameter(s) = scalar; run = short. cache = True; usecache = False +_____________________________________________________________ +Method total d/l->file read & parse file +_____________________________________________________________ +binary 0.2047 0.1489 0.0109 +csv; pandas 0.1789 0.1320 0.0142 +csv; pandas; no len. 0.2006 0.1373 0.0066 +csv; numpy 0.1893 0.1298 0.0045 +csv; numpy; no len. 0.1836 0.1260 0.0053 + +Dataset = dataset1; Parameter(s) = scalar,vector; run = short. cache = True; usecache = False +_____________________________________________________________ +Method total d/l->file read & parse file +_____________________________________________________________ +binary 0.1687 0.1163 0.0117 +csv; pandas 0.1722 0.1198 0.0143 +csv; pandas; no len. 0.2083 0.1543 0.0073 +csv; numpy 0.1875 0.1297 0.0057 +csv; numpy; no len. 0.1960 0.1360 0.0058 + +Dataset = dataset1; Parameter(s) = ; run = short. cache = True; usecache = False +_____________________________________________________________ +Method total d/l->file read & parse file +_____________________________________________________________ +binary 0.1738 0.1211 0.0087 +csv; pandas 0.1728 0.1248 0.0148 +csv; pandas; no len. 0.2127 0.1561 0.0131 +csv; numpy 0.1439 0.0850 0.0103 +csv; numpy; no len. 0.1147 0.0782 0.0110 + +Dataset = dataset1-Aα☃; Parameter(s) = Time; run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1639 0.1324 0.0001 +csv; pandas 0.1486 0.1280 0.0027 +csv; pandas; no len. 0.1335 0.1132 0.0027 +csv; numpy 0.1447 0.1268 0.0004 +csv; numpy; no len. 0.1046 0.0866 0.0006 + +Dataset = dataset1-Aα☃; Parameter(s) = unicodescalar-1-byte (A); run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1387 0.1048 0.0001 +csv; pandas 0.0882 0.0660 0.0017 +csv; pandas; no len. 0.0993 0.0777 0.0022 +csv; numpy 0.1299 0.1115 0.0003 +csv; numpy; no len. 0.1212 0.1044 0.0007 + +Dataset = dataset1-Aα☃; Parameter(s) = unicodescalar-2-byte (α); run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1160 0.0692 0.0001 +csv; pandas 0.1288 0.1082 0.0021 +csv; pandas; no len. 0.1348 0.1153 0.0021 +csv; numpy 0.1344 0.1175 0.0003 +csv; numpy; no len. 0.2600 0.2430 0.0007 + +Dataset = dataset1-Aα☃; Parameter(s) = unicodescalar-3-byte (☃); run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1149 0.0827 0.0001 +csv; pandas 0.1327 0.1142 0.0021 +csv; pandas; no len. 0.0873 0.0678 0.0020 +csv; numpy 0.1518 0.1332 0.0005 +csv; numpy; no len. 0.0924 0.0728 0.0008 + +Dataset = dataset1-Aα☃; Parameter(s) = unicodescalar-4-byte (👍); run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1154 0.0808 0.0001 +csv; pandas 0.0945 0.0724 0.0022 +csv; pandas; no len. 0.1325 0.1134 0.0019 +csv; numpy 0.1116 0.0938 0.0003 +csv; numpy; no len. 0.1330 0.1148 0.0008 + +Dataset = dataset1-Aα☃; Parameter(s) = unicodevector (A;α;☃;👍); run = short. cache = False; usecache = False +___________________________________________________________ +Method total d/l->buff parse buff +___________________________________________________________ +binary 0.1416 0.1073 0.0002 +csv; pandas 0.1306 0.1102 0.0027 +csv; pandas; no len. 0.0904 0.0697 0.0024 +csv; numpy 0.0921 0.0738 0.0005 +csv; numpy; no len. 0.0990 0.0811 0.0008 diff --git a/hapiclient/test/compare.py b/hapiclient/test/compare.py new file mode 100644 index 0000000..15ff0cf --- /dev/null +++ b/hapiclient/test/compare.py @@ -0,0 +1,240 @@ +import os +import numpy as np +import shutil + +from hapiclient import hapi + +debug = False + +def comparisonOK(a, b, nolength=False, a_name="First", b_name="Second"): + + if a.dtype != b.dtype: + if debug: + print('---- dts differ.') + unicode_length_mismatch = False + for i in range(len(a.dtype)): + if a.dtype[i].str != b.dtype[i].str: + if debug: + print("--- {}".format(a_name)) + print("--- {}".format(a.dtype[i].str)) + print("--- {}".format(b_name)) + print("--- {}".format(b.dtype[i].str)) + # When length is given, the HAPI spec states that it should be + # the number of bytes required to store any value of the parameter. + # Greek characters require two bytes when encoded as UTF-8, so + # length=2 if the parameter values are all single Greek character. + # However, when NumPy is used to determine the data type of a + # single UTF-8 encoded character because length is not given, + # it uses "U1" (see hapi.py/parse_missing_length() and search + # for ".astype('file read & parse file') + xprint('_____________________________________________________________') + else: + xprint('___________________________________________________________') + xprint('Method total d/l->buff parse buff') + xprint('___________________________________________________________') + + + opts['format'] = 'binary' + opts['method'] = '' + + data0, meta = hapi(server, dataset, parameters, start, stop, **opts) + xprint('binary %8.4f %8.4f %8.4f' % \ + (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'])) + + opts['format'] = 'csv' + + opts['method'] = 'pandas' # Default CSV read method. + data, meta = hapi(server, dataset, parameters, start, stop, **opts) + xprint('csv; pandas %8.4f %8.4f %8.4f' % \ + (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'])) + + allpass = allpass and comparisonOK(data0, data, a_name='binary', b_name='pandas') + + opts['method'] = 'pandasnolength' + data, meta = hapi(server, dataset, parameters, start, stop, **opts) + xprint('csv; pandas; no len. %8.4f %8.4f %8.4f' % \ + (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'])) + + allpass = allpass and comparisonOK(data0, data, nolength=True, a_name='binary', b_name='csv; pandas; no len.') + + + opts['method'] = 'numpy' + data, meta = hapi(server, dataset, parameters, start, stop, **opts) + xprint('csv; numpy %8.4f %8.4f %8.4f' % \ + (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'])) + + allpass = allpass and comparisonOK(data0, data, a_name='binary', b_name='csv; numpy') + + opts['method'] = 'numpynolength' + data, meta = hapi(server, dataset, parameters, start, stop, **opts) + xprint('csv; numpy; no len. %8.4f %8.4f %8.4f' % \ + (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'])) + + + allpass = allpass and comparisonOK(data0, data, nolength=True, a_name='binary', b_name='csv; numpy; no len.') + + return allpass diff --git a/hapiclient/test/data/test_dataset.pkl b/hapiclient/test/data/test_dataset.pkl index 1b968d9..17b6246 100644 Binary files a/hapiclient/test/data/test_dataset.pkl and b/hapiclient/test/data/test_dataset.pkl differ diff --git a/hapiclient/test/data/test_parameter.pkl b/hapiclient/test/data/test_parameter.pkl index 2c4c9c7..17b6246 100644 Binary files a/hapiclient/test/data/test_parameter.pkl and b/hapiclient/test/data/test_parameter.pkl differ diff --git a/hapiclient/test/readcompare.log b/hapiclient/test/readcompare.log deleted file mode 100644 index b0582d4..0000000 --- a/hapiclient/test/readcompare.log +++ /dev/null @@ -1,60 +0,0 @@ - -Parameter(s) = scalar; run = short. cache = False; usecache = False -___________________________________________________________ -Method total d/l->buff parse buff -___________________________________________________________ -csv; numpy; no len. 0.2068 0.1556 0.0013 -csv; pandas; no len. 0.2195 0.1801 0.0036 (diffs in float values <= 1e-15) -csv; numpy 0.2339 0.1799 0.0003 (diffs in float values <= 1e-15) -csv; pandas 0.2396 0.1838 0.0025 (diffs in float values <= 1e-15) -binary 0.2475 0.1748 0.0000 (diffs in float values <= 1e-15) - -Parameter(s) = scalar,vector; run = short. cache = False; usecache = False -___________________________________________________________ -Method total d/l->buff parse buff -___________________________________________________________ -csv; numpy; no len. 0.2308 0.1813 0.0005 -csv; pandas; no len. 0.2422 0.1865 0.0031 -csv; numpy 0.2325 0.1823 0.0003 -csv; pandas 0.2432 0.1854 0.0029 -binary 0.2544 0.1697 0.0000 - -Parameter(s) = ; run = short. cache = False; usecache = False -___________________________________________________________ -Method total d/l->buff parse buff -___________________________________________________________ -csv; numpy; no len. 0.2327 0.1779 0.0069 -csv; pandas; no len. 0.2543 0.1821 0.0196 -csv; numpy 0.2249 0.1796 0.0042 -csv; pandas 0.2507 0.1816 0.0189 -binary 0.2379 0.1785 0.0000 - -Parameter(s) = scalar; run = short. cache = True; usecache = False -_____________________________________________________________ -Method total d/l->file read & parse file -_____________________________________________________________ -csv; numpy; no len. 0.2177 0.1751 0.0013 -csv; pandas; no len. 0.2107 0.1516 0.0028 (diffs in float values <= 1e-15) -csv; numpy 0.2065 0.1760 0.0005 (diffs in float values <= 1e-15) -csv; pandas 0.2110 0.1504 0.0035 (diffs in float values <= 1e-15) -binary 0.2740 0.1852 0.0001 (diffs in float values <= 1e-15) - -Parameter(s) = scalar,vector; run = short. cache = True; usecache = False -_____________________________________________________________ -Method total d/l->file read & parse file -_____________________________________________________________ -csv; numpy; no len. 0.2471 0.1848 0.0007 -csv; pandas; no len. 0.2412 0.1848 0.0031 -csv; numpy 0.2294 0.1802 0.0006 -csv; pandas 0.2084 0.1544 0.0029 -binary 0.2284 0.1516 0.0003 - -Parameter(s) = ; run = short. cache = True; usecache = False -_____________________________________________________________ -Method total d/l->file read & parse file -_____________________________________________________________ -csv; numpy; no len. 0.2335 0.1781 0.0077 -csv; pandas; no len. 0.2544 0.1828 0.0199 -csv; numpy 0.2141 0.1786 0.0040 -csv; pandas 0.2581 0.1776 0.0198 -binary 0.2963 0.1950 0.0003 diff --git a/hapiclient/test/readcompare.py b/hapiclient/test/readcompare.py deleted file mode 100644 index 4952ac9..0000000 --- a/hapiclient/test/readcompare.py +++ /dev/null @@ -1,180 +0,0 @@ -import os -import pickle -import numpy as np - -from hapiclient import hapi - -debug = False - - -def comparisonOK(a, b): - - if a.dtype != b.dtype: - if debug: print('Data types differ.') - if debug: print(a.dtype, b.dtype) - if debug: import pdb; pdb.set_trace() - return False - - if equal(a, b): - return True - else: - if closeFloats(a, b) and equalNonFloats(a, b): - return True - else: - return False - - -def equal(a, b): - allequal = True - for name in a.dtype.names: - if not np.array_equal(a[name], b[name]): - allequal = False - if debug: print(name + ' values differ.') - - return allequal - - -def equalNonFloats(a, b): - allequal = True - for name in a.dtype.names: - if np.issubdtype(a[name].dtype, np.integer) or np.issubdtype(a[name].dtype, np.flexible): - # https://docs.scipy.org/doc/numpy-1.10.1/reference/arrays.scalars.html - # Parameter type is string or integer - if not np.array_equal(a[name], b[name]): - allequal = False - if debug: print(name + ' values differ.') - if debug: import pdb; pdb.set_trace() - - return allequal - - -def closeFloats(a, b): - allclose = True - for name in a.dtype.names: - if np.issubdtype(a[name].dtype, np.inexact): - # https://docs.scipy.org/doc/numpy-1.10.1/reference/arrays.scalars.html - # Parameter is floating point number - if np.allclose(a[name], b[name], rtol=1e-15, atol=0.0, equal_nan=True): - if not np.array_equal(a[name], b[name]): - if debug: print(name + ' values equal within rtol=1e-15.') - else: - allclose = False - if debug: print(name + ' values not equal within rtol=1e-15.') - if debug: import pdb; pdb.set_trace() - - - return allclose - - -# Create empty file -logfile = os.path.realpath(__file__)[0:-2] + "log" -with open(logfile, "w") as f: pass - -def xprint(msg): - print(msg) - f = open(logfile, "a") - f.write(msg + "\n") - f.close() - - -def readcompare(server, dataset, parameters, run, opts): - - # Note that for this dataset, there are differences in - # the numeric values that seem not to be due to issues - # with the reader. This needs investigation. - - dataset = 'dataset1' - start = '1970-01-01' - - allpass = True - - if run == 'short': - stop = '1970-01-01T00:00:03' # Returns 3 time values - - if run == 'long': - stop= '1970-01-02T00:00:00' # Returns 86400 time values - - if run == 'verylong': - stop= '1970-01-02T00:00:00' # Returns 86400 time values - - # Checks that all four read methods give same result. - # Does not check that an individual read is correct. - # Do this manually. - - opts['format'] = 'csv' - - xprint('\nParameter(s) = %s; run = %s. cache = %s; usecache = %s' \ - % (parameters, run, opts['cache'], opts['usecache'])) - if opts['cache']: - xprint('_____________________________________________________________') - xprint('Method total d/l->file read & parse file') - xprint('_____________________________________________________________') - else: - xprint('___________________________________________________________') - xprint('Method total d/l->buff parse buff') - xprint('___________________________________________________________') - - - opts['method'] = 'numpynolength' - data, meta = hapi(server, dataset, parameters, start, stop, **opts) - xprint('csv; numpy; no len. %8.4f %8.4f %8.4f' % \ - (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'])) - datalast = data - - - opts['method'] = 'pandasnolength' - data, meta = hapi(server, dataset, parameters, start, stop, **opts) - - diffs = '' - if np.array_equal(data, datalast): - diffs = '(diffs in float values <= 1e-15)' - - xprint('csv; pandas; no len. %8.4f %8.4f %8.4f %s' % \ - (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'], diffs)) - - allpass = comparisonOK(data, datalast) - datalast = data - - - opts['method'] = 'numpy' - data, meta = hapi(server, dataset, parameters, start, stop, **opts) - - diffs = '' - if np.array_equal(data, datalast): - diffs = '(diffs in float values <= 1e-15)' - - xprint('csv; numpy %8.4f %8.4f %8.4f %s' % \ - (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'], diffs)) - - allpass = comparisonOK(data, datalast) - datalast = data - - - opts['method'] = 'pandas' - data, meta = hapi(server, dataset, parameters, start, stop, **opts) - - diffs = '' - if np.array_equal(data, datalast): - diffs = '(diffs in float values <= 1e-15)' - - xprint('csv; pandas %8.4f %8.4f %8.4f %s' % \ - (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'], diffs)) - - allpass = comparisonOK(data, datalast) - datalast = data - - - opts['format'] = 'binary' - opts['method'] = '' # Ignored - data, meta = hapi(server, dataset, parameters, start, stop, **opts) - - diffs = '' - if np.array_equal(data, datalast): - diffs = '(diffs in float values <= 1e-15)' - - xprint('binary %8.4f %8.4f %8.4f %s' % \ - (meta['x_totalTime'], meta['x_downloadTime'], meta['x_readTime'], diffs)) - - allpass = comparisonOK(data, datalast) - - return allpass diff --git a/hapiclient/test/test_chunking.log b/hapiclient/test/test_chunking.log index 23bec08..91b69d1 100644 --- a/hapiclient/test/test_chunking.log +++ b/hapiclient/test/test_chunking.log @@ -1,162 +1,162 @@ ________________________________________________________________________________ request : dataset3, scalar, 1971-01-01T01:50:00Z, 1975-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False} -x_totalTime1 = 0.8896 s -x_totalTime2 = 0.2953 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv'} +x_totalTime1 = 0.2720 s +x_totalTime2 = 0.2840 s ________________________________________________________________________________ request : dataset3, scalar, 1971-01-01T01:50:00Z, 1975-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2} -x_totalTime1 = 0.8896 s -x_totalTime2 = 0.4845 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'n_chunks': 2} +x_totalTime1 = 0.2720 s +x_totalTime2 = 0.7074 s ________________________________________________________________________________ request : dataset3, scalar, 1971-01-01T01:50:00Z, 1975-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'P1Y'} -x_totalTime1 = 0.8896 s -x_totalTime2 = 1.0794 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': 'P1Y'} +x_totalTime1 = 0.2720 s +x_totalTime2 = 1.7951 s ________________________________________________________________________________ request : dataset3, scalar, 1971-01-01T01:50:00Z, 1975-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2, 'parallel': True} -x_totalTime1 = 0.8896 s -x_totalTime2 = 0.5461 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'n_chunks': 2} +x_totalTime1 = 0.2720 s +x_totalTime2 = 0.4590 s ________________________________________________________________________________ request : dataset3, scalar, 1971-01-01T01:50:00Z, 1975-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'P1Y', 'parallel': True} -x_totalTime1 = 0.8896 s -x_totalTime2 = 0.8025 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'dt_chunk': 'P1Y'} +x_totalTime1 = 0.2720 s +x_totalTime2 = 1.0061 s ________________________________________________________________________________ -request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False} -x_totalTime1 = 0.6847 s -x_totalTime2 = 0.5970 s +request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv'} +x_totalTime1 = 0.4959 s +x_totalTime2 = 0.2389 s ________________________________________________________________________________ -request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2} -x_totalTime1 = 0.6847 s -x_totalTime2 = 1.0687 s +request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'n_chunks': 2} +x_totalTime1 = 0.4959 s +x_totalTime2 = 0.5793 s ________________________________________________________________________________ -request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'PT1H'} -x_totalTime1 = 0.6847 s -x_totalTime2 = 2.3736 s +request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': 'P1M'} +x_totalTime1 = 0.4959 s +x_totalTime2 = 2.4138 s ________________________________________________________________________________ -request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2, 'parallel': True} -x_totalTime1 = 0.6847 s -x_totalTime2 = 0.7031 s +request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'n_chunks': 2} +x_totalTime1 = 0.4959 s +x_totalTime2 = 0.4608 s ________________________________________________________________________________ -request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'PT1H', 'parallel': True} -x_totalTime1 = 0.6847 s -x_totalTime2 = 1.0276 s +request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'dt_chunk': 'P1M'} +x_totalTime1 = 0.4959 s +x_totalTime2 = 1.5068 s ________________________________________________________________________________ request : dataset2, scalar, 1970-01-01T00:00:00.000Z, 1970-01-10T00:00:00.000Z, PT1H -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False} -x_totalTime1 = 0.2410 s -x_totalTime2 = 0.2066 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv'} +x_totalTime1 = 0.2835 s +x_totalTime2 = 0.2982 s ________________________________________________________________________________ request : dataset2, scalar, 1970-01-01T00:00:00.000Z, 1970-01-10T00:00:00.000Z, PT1H -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2} -x_totalTime1 = 0.2410 s -x_totalTime2 = 0.4295 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'n_chunks': 2} +x_totalTime1 = 0.2835 s +x_totalTime2 = 0.6436 s ________________________________________________________________________________ request : dataset2, scalar, 1970-01-01T00:00:00.000Z, 1970-01-10T00:00:00.000Z, PT1H -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'P1D'} -x_totalTime1 = 0.2410 s -x_totalTime2 = 2.2053 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': 'P1D'} +x_totalTime1 = 0.2835 s +x_totalTime2 = 3.0275 s ________________________________________________________________________________ request : dataset2, scalar, 1970-01-01T00:00:00.000Z, 1970-01-10T00:00:00.000Z, PT1H -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2, 'parallel': True} -x_totalTime1 = 0.2410 s -x_totalTime2 = 0.4458 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'n_chunks': 2} +x_totalTime1 = 0.2835 s +x_totalTime2 = 0.3745 s ________________________________________________________________________________ request : dataset2, scalar, 1970-01-01T00:00:00.000Z, 1970-01-10T00:00:00.000Z, PT1H -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'P1D', 'parallel': True} -x_totalTime1 = 0.2410 s -x_totalTime2 = 1.3257 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'dt_chunk': 'P1D'} +x_totalTime1 = 0.2835 s +x_totalTime2 = 1.7074 s ________________________________________________________________________________ -request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False} -x_totalTime1 = 0.2198 s -x_totalTime2 = 0.2211 s +request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv'} +x_totalTime1 = 0.3290 s +x_totalTime2 = 0.5350 s ________________________________________________________________________________ -request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2} -x_totalTime1 = 0.2198 s -x_totalTime2 = 0.4082 s +request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'n_chunks': 2} +x_totalTime1 = 0.3290 s +x_totalTime2 = 0.4166 s ________________________________________________________________________________ -request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'P1M'} -x_totalTime1 = 0.2198 s -x_totalTime2 = 1.7062 s +request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': 'PT1H'} +x_totalTime1 = 0.3290 s +x_totalTime2 = 1.2239 s ________________________________________________________________________________ -request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'n_chunks': 2, 'parallel': True} -x_totalTime1 = 0.2198 s -x_totalTime2 = 0.5407 s +request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'n_chunks': 2} +x_totalTime1 = 0.3290 s +x_totalTime2 = 0.5489 s ________________________________________________________________________________ -request : dataset3, scalar, 1971-01-01T01:50:00Z, 1971-08-03T06:50:00Z, P1D -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'P1M', 'parallel': True} -x_totalTime1 = 0.2198 s -x_totalTime2 = 1.3219 s +request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'parallel': True, 'dt_chunk': 'PT1H'} +x_totalTime1 = 0.3290 s +x_totalTime2 = 1.2479 s ________________________________________________________________________________ request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T08:00:00Z, PT1S -options 1: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'logging': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 0.7797 s -x_totalTime2 = 0.7756 s +options 1: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': None} +options 2: {'logging': False, 'usecache': False, 'cache': True, 'format': 'csv', 'dt_chunk': 'infer'} +x_totalTime1 = 0.3765 s +x_totalTime2 = 0.3114 s ________________________________________________________________________________ request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 0.6551 s -x_totalTime2 = 0.6555 s +options 1: {'usecache': False, 'cache': False, 'dt_chunk': None} +options 2: {'usecache': False, 'cache': False, 'dt_chunk': 'infer'} +x_totalTime1 = 0.3379 s +x_totalTime2 = 0.2895 s ________________________________________________________________________________ request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 0.6551 s -x_totalTime2 = 0.9336 s +options 1: {'usecache': False, 'cache': False, 'dt_chunk': None} +options 2: {'usecache': False, 'cache': False, 'dt_chunk': 'infer'} +x_totalTime1 = 0.3379 s +x_totalTime2 = 0.3622 s ________________________________________________________________________________ request : dataset1, scalar, 1970-01-01T00:00:00.000Z, 1970-01-01T05:00:00.000Z, PT1S -options 1: {'cache': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 0.6551 s -x_totalTime2 = 1.5967 s +options 1: {'usecache': False, 'cache': False, 'dt_chunk': None} +options 2: {'usecache': False, 'cache': False, 'dt_chunk': 'infer'} +x_totalTime1 = 0.3379 s +x_totalTime2 = 0.4851 s ________________________________________________________________________________ request : ace, X_GSM, 2000-01-01T00:00:00.000Z, 2000-01-02T00:00:00.000Z, PT720S -options 1: {'cache': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 1.6808 s -x_totalTime2 = 2.3436 s +options 1: {'usecache': False, 'cache': False, 'dt_chunk': None} +options 2: {'usecache': False, 'cache': False, 'dt_chunk': 'infer'} +x_totalTime1 = 1.1988 s +x_totalTime2 = 2.2726 s ________________________________________________________________________________ request : ace, X_GSM, 2000-01-01T00:00:00.000Z, 2000-01-02T00:00:00.000Z, PT720S -options 1: {'cache': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 1.6808 s -x_totalTime2 = 2.4476 s +options 1: {'usecache': False, 'cache': False, 'dt_chunk': None} +options 2: {'usecache': False, 'cache': False, 'dt_chunk': 'infer'} +x_totalTime1 = 1.1988 s +x_totalTime2 = 2.1587 s ________________________________________________________________________________ request : ace, X_GSM, 2000-01-01T00:00:00.000Z, 2000-01-02T00:00:00.000Z, PT720S -options 1: {'cache': False, 'usecache': False, 'dt_chunk': None} -options 2: {'cache': False, 'usecache': False, 'dt_chunk': 'infer'} -x_totalTime1 = 1.6808 s -x_totalTime2 = 2.2965 s +options 1: {'usecache': False, 'cache': False, 'dt_chunk': None} +options 2: {'usecache': False, 'cache': False, 'dt_chunk': 'infer'} +x_totalTime1 = 1.1988 s +x_totalTime2 = 2.2047 s diff --git a/hapiclient/test/test_chunking.py b/hapiclient/test/test_chunking.py index c51226c..9f5eaef 100644 --- a/hapiclient/test/test_chunking.py +++ b/hapiclient/test/test_chunking.py @@ -4,17 +4,16 @@ from datetime import datetime from hapiclient import hapi from hapiclient.hapitime import hapitime2datetime, hapitime_reformat -from hapiclient.test.readcompare import equal +from hapiclient.test.compare import equal # See comments in test_hapitime2datetime.py for execution options. compare_logging = True hapi_logging = False -logfile = os.path.realpath(__file__)[0:-2] + "log" -with open(logfile, "w") as f: - # Create empty file - pass +# Create empty file +logfile = os.path.splitext(__file__)[0] + ".log" +with open(logfile, "w") as f: pass def xprint(msg): print(msg) @@ -22,6 +21,7 @@ def xprint(msg): f.write(msg + "\n") f.close() +server = "http://hapi-server.org/servers/TestData2.0/hapi" def compare(data1, data2, meta1, meta2, opts1, opts2): if compare_logging: @@ -51,14 +51,14 @@ def cat(d1, d2): return d12 -opts0 = {'logging': hapi_logging, 'usecache': False, 'cache': False} +opts0 = {'logging': hapi_logging, 'usecache': False, 'cache': True, 'format': 'csv'} # Test dict. # Key indicates chunk size to use for chunk test td = { "P1Y": { "__comment": "dataset3 has cadence of P1D", - "server": "http://hapi-server.org/servers-dev/TestData2.0/hapi", + "server": server, "dataset": "dataset3", "parameters": "scalar", "start": "1971-01-01T01:50:00Z", @@ -66,7 +66,7 @@ def cat(d1, d2): }, "P1M": { "__comment": "dataset3 has cadence of P1D", - "server": "http://hapi-server.org/servers-dev/TestData2.0/hapi", + "server": server, "dataset": "dataset3", "parameters": "scalar", "start": "1971-01-01T01:50:00Z", @@ -75,7 +75,7 @@ def cat(d1, d2): "P1D": { "__comment": "dataset2 has cadence of P1H", - "server": "http://hapi-server.org/servers-dev/TestData2.0/hapi", + "server": server, "dataset": "dataset2", "parameters": "scalar", "start": "1970-01-01T00:00:00.000Z", @@ -83,7 +83,7 @@ def cat(d1, d2): }, "PT1H": { "__comment": "dataset1 has cadence of PT1S", - "server": "http://hapi-server.org/servers/TestData2.0/hapi", + "server": server, "dataset": "dataset1", "parameters": "scalar", "start": "1970-01-01T00:00:00.000Z", @@ -101,6 +101,11 @@ def test_chunks(): d = td[key]['dataset'] p = td[key]['parameters'] + if '-dev' in s: + import warnings + warnings.warn("Change server from dev to production for these tests") + + # Reference result. No splitting will be performed. opts1 = cat(opts0, {'dt_chunk': None}) data1, meta1 = hapi(s, d, p, td[key]['start'], td[key]['stop'], **opts1) diff --git a/hapiclient/test/test_datetime2hapitime.py b/hapiclient/test/test_datetime2hapitime.py new file mode 100644 index 0000000..1ed1118 --- /dev/null +++ b/hapiclient/test/test_datetime2hapitime.py @@ -0,0 +1,17 @@ +def test_datetime2hapitime(): + + import datetime + from hapiclient import datetime2hapitime + + dts = [datetime.datetime(2000,1,1),datetime.datetime(2000,1,2)]; + hapi_times = datetime2hapitime(dts) + assert hapi_times[0] == '2000-01-01T00:00:00.000000Z' + assert hapi_times[1] == '2000-01-02T00:00:00.000000Z' + + dt = datetime.datetime(2000,1,1) + hapi_time = datetime2hapitime(dt) + assert hapi_time == '2000-01-01T00:00:00.000000Z' + + +if __name__ == '__main__': + test_datetime2hapitime() diff --git a/hapiclient/test/test_hapi.py b/hapiclient/test/test_hapi.py index 86393e5..bb80dbc 100644 --- a/hapiclient/test/test_hapi.py +++ b/hapiclient/test/test_hapi.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# Above line can be removed when Python 2.7 support is dropped. import os import pytest import pickle @@ -7,16 +9,19 @@ from deepdiff import DeepDiff from hapiclient.hapi import hapi -from hapiclient.test.readcompare import readcompare +from hapiclient.test import compare -serverbad = 'http://hapi-server.org/servers/TestData/xhapi' -server = 'http://hapi-server.org/servers/TestData2.0/hapi' - -# To run the long benchmark, execute +# To run tests on a specific function, edit the function calls in the +# if __name__ == '__main__' block and then execute +# # python test_hapi.py - +# # See comments in test_hapitime2datetime.py for other execution options. +logging = False +serverbad = 'http://hapi-server.org/servers/TestData/xhapi' +server = 'http://hapi-server.org/servers/TestData2.0/hapi' + def writepickle(fname, var): print("!!!!!!!!!!!!!!") print("Writing " + fname) @@ -64,6 +69,7 @@ def test_dataset(): return else: metatest = readpickle(pklFile) + import pdb; pdb.set_trace() assert DeepDiff(meta,metatest) == {} @@ -86,7 +92,7 @@ def test_parameter(): def test_bad_server_url(): """Correct error when given bad URL""" with pytest.raises(Exception): - hapi(serverbad, {'logging': True}) + hapi(serverbad, {'logging': logging}) @pytest.mark.short @@ -109,42 +115,37 @@ def test_reader_short(): dataset = 'dataset1' run = 'short' - # - # Cache = False (will read data into buffer) - # - opts = {'logging': False, 'cachedir': '/tmp/hapi-data', 'usecache': False} + opts = {'logging': logging, 'cachedir': '/tmp/hapi-data', 'usecache': False} opts['cache'] = False # Read one parameter shutil.rmtree(opts['cachedir'], ignore_errors=True) - assert readcompare(server, dataset, 'scalar', run, opts) + assert compare.read(server, dataset, 'scalar', run, opts) # Read two parameters shutil.rmtree(opts['cachedir'], ignore_errors=True) - assert readcompare(server, dataset, 'scalar,vector', run, opts) + assert compare.read(server, dataset, 'scalar,vector', run, opts) # Read all parameters shutil.rmtree(opts['cachedir'], ignore_errors=True) - assert readcompare(server, dataset, '', run, opts) + assert compare.read(server, dataset, '', run, opts) - # # Cache = True (will write files then read) - # opts['cache'] = True # Read one parameter shutil.rmtree(opts['cachedir'], ignore_errors=True) - assert readcompare(server, dataset, 'scalar', run, opts) + assert compare.read(server, dataset, 'scalar', run, opts) # Read two parameters shutil.rmtree(opts['cachedir'], ignore_errors=True) - assert readcompare(server, dataset, 'scalar,vector', run, opts) + assert compare.read(server, dataset, 'scalar,vector', run, opts) shutil.rmtree(opts['cachedir'], ignore_errors=True) # Read all parameters shutil.rmtree(opts['cachedir'], ignore_errors=True) - assert readcompare(server, dataset, '', run, opts) + assert compare.read(server, dataset, '', run, opts) @pytest.mark.short @@ -155,7 +156,7 @@ def test_cache_short(): start = '1970-01-01' stop = '1970-01-01T00:00:03' - opts = {'logging': False, 'cachedir': '/tmp/hapi-data', 'cache': True} + opts = {'logging': logging, 'cachedir': '/tmp/hapi-data', 'cache': True} opts['usecache'] = False shutil.rmtree(opts['cachedir'], ignore_errors=True) @@ -173,7 +174,7 @@ def test_subset_short(): dataset = 'dataset1' start = '1970-01-01' stop = '1970-01-01T00:00:03' - opts = {'logging': False, 'cachedir': '/tmp/hapi-data', 'cache': True} + opts = {'logging': logging, 'cachedir': '/tmp/hapi-data', 'cache': True} opts['usecache'] = False @@ -221,6 +222,57 @@ def test_subset_short(): ok = ok and np.array_equal(data['vectorint'], data2['vectorint']) assert ok +@pytest.mark.short +def test_request2path(): + + from hapiclient.hapi import request2path; + + import platform + if platform.system() == 'Windows': + p = request2path('http://server/dir1/dir2','xx','abc<>:"/|?*.','2000-01-01T00:00:00.Z','2000-01-01T00:00:00.Z','') + assert p == 'server_dir1_dir2\\xx_abc@lt@@gt@@colon@@doublequote@@forwardslash@@pipe@@questionmark@@asterisk@._20000101T000000_20000101T000000' + else: + p = request2path('http://server/dir1/dir2','xx/yy','abc/123','2000-01-01T00:00:00.Z','2000-01-01T00:00:00.Z','') + assert p == 'server_dir1_dir2/xx@forwardslash@yy_abc@forwardslash@123_20000101T000000_20000101T000000' + + +@pytest.mark.short +def test_unicode(): + + from hapiclient.util import warning, unicode_error_message + + server = 'http://hapi-server.org/servers/TestData3.1/hapi'; + #datasets = ["dataset1", "dataset1-Zα☃"] + datasets = ["dataset1-Aα☃"] + #datasets = ["dataset1"] + + run = 'short' + + opts = { + 'logging': True, + 'cachedir': '/tmp/hapi-data', + 'usecache': False, + 'cache': False + } + + + shutil.rmtree(opts['cachedir'], ignore_errors=True) + for dataset in datasets: + if unicode_error_message(dataset) != "": + warning("Skipping "+ str(dataset.encode('utf-8')) + " due to " + unicode_error_message(dataset)) + continue + meta = hapi(server, dataset) + for p in meta['parameters']: + + # Read one parameter + parameter = p['name'] + if unicode_error_message(parameter) != "": + warning("Skipping "+ str(parameter.encode('utf-8')) + " due to " + unicode_error_message(parameter)) + continue + + assert compare.read(server, dataset, parameter, run, opts.copy()) + assert compare.cache(server, dataset, parameter, opts.copy()) + @pytest.mark.long def test_reader_long(): @@ -229,15 +281,62 @@ def test_reader_long(): run = 'long' # Read three parameters - opts = {'logging': False, 'cachedir': '/tmp/hapi-data', 'cache': False, 'usecache': False} - assert readcompare(server, dataset, 'scalar,vector,spectra', run, opts) + opts = {'logging': logging, 'cachedir': '/tmp/hapi-data', 'cache': False, 'usecache': False} + assert compare.read(server, dataset, 'scalar,vector,spectra', run, opts) + + opts = {'logging': logging, 'cachedir': '/tmp/hapi-data', 'cache': True, 'usecache': False} + assert compare.read(server, dataset, 'scalar,vector,spectra', run, opts) + + opts = {'logging': logging, 'cachedir': '/tmp/hapi-data', 'cache': False, 'usecache': True} + assert compare.read(server, dataset, 'scalar,vector,spectra', run, opts) + + +@pytest.mark.short +def test_none_stop(): + import numpy as np + + from hapiclient import hapi + from hapiclient import hapitime2datetime + from hapiclient import datetime2hapitime + from datetime import timedelta + + server = 'http://hapi-server.org/servers/TestData2.0/hapi' + dataset = 'dataset1' + parameters = 'scalar' + + meta = hapi(server, dataset) + stop = meta['stopDate'] + stop_dt = hapitime2datetime(stop)[0] + + start_dt = stop_dt - timedelta(minutes=1) + start = datetime2hapitime(start_dt) + + data1, meta1 = hapi(server, dataset, parameters, start, None) + + data2, meta2 = hapi(server, dataset, parameters, start, stop) + + allequal = True + for name in data1.dtype.names: + assert np.array_equal(data1[name], data2[name]) - opts = {'logging': False, 'cachedir': '/tmp/hapi-data', 'cache': True, 'usecache': False} - assert readcompare(server, dataset, 'scalar,vector,spectra', run, opts) - opts = {'logging': False, 'cachedir': '/tmp/hapi-data', 'cache': False, 'usecache': True} - assert readcompare(server, dataset, 'scalar,vector,spectra', run, opts) +def runall(): + from hapiclient.test import test_hapi + for i in dir(test_hapi): + item = getattr(test_hapi,i) + if callable(item) and item.__name__.startswith("test_"): + if item.__name__ == 'test_reader_long': + continue + print("Running " + item.__name__) + item() if __name__ == '__main__': - test_reader_long() \ No newline at end of file + #runall() + test_dataset() + #test_parameter() + #test_reader_short() + #test_unicode() + #test_request2path() + #test_reader_short() + #test_none_stop() diff --git a/hapiclient/test/test_hapitime2datetime.log b/hapiclient/test/test_hapitime2datetime.log index 9086cfd..0abd3a7 100644 --- a/hapiclient/test/test_hapitime2datetime.log +++ b/hapiclient/test/test_hapitime2datetime.log @@ -1,47 +1,44 @@ test_api(): API test. -hapitime2datetime(): Pandas processing time = 0.0024s, first time = 1970-01-01T00:00:00.000Z -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1970-01-01T00:00:00.000Z -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1970-01-01T00:00:00.000Z -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1970-01-01T00:00:00.000Z -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1970-01-01T00:00:00.000Z -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1970-01-01T00:00:00.000Z +hapitime2datetime(): Pandas processing time = 0.0015s, first time = 1970-01-01T00:00:00.000Z +hapitime2datetime(): Pandas processing time = 0.0006s, first time = 1970-01-01T00:00:00.000Z +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1970-01-01T00:00:00.000Z +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1970-01-01T00:00:00.000Z +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1970-01-01T00:00:00.000Z +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1970-01-01T00:00:00.000Z test_parsing(): Parse test. hapitime2datetime(): Pandas processing failed, first time = 1989Z -hapitime2datetime(): Manual processing time = 0.0035s, Input = 1989Z, fmt = %YZ +hapitime2datetime(): Manual processing time = 0.0015s, Input = 1989Z, fmt = %YZ hapitime2datetime(): Pandas processing failed, first time = 1989-01Z -hapitime2datetime(): Manual processing time = 0.0013s, Input = 1989-01Z, fmt = %Y-%mZ +hapitime2datetime(): Manual processing time = 0.0008s, Input = 1989-01Z, fmt = %Y-%mZ hapitime2datetime(): Pandas processing failed, first time = 1989-001Z -hapitime2datetime(): Manual processing time = 0.0013s, Input = 1989-001Z, fmt = %Y-%jZ +hapitime2datetime(): Manual processing time = 0.0008s, Input = 1989-001Z, fmt = %Y-%jZ hapitime2datetime(): Pandas processing failed, first time = 1989-01-01Z -hapitime2datetime(): Manual processing time = 0.0013s, Input = 1989-01-01Z, fmt = %Y-%m-%dZ +hapitime2datetime(): Manual processing time = 0.0009s, Input = 1989-01-01Z, fmt = %Y-%m-%dZ hapitime2datetime(): Pandas processing failed, first time = 1989-001T00Z -hapitime2datetime(): Manual processing time = 0.0014s, Input = 1989-001T00Z, fmt = %Y-%jT%HZ -hapitime2datetime(): Pandas processing failed, first time = 1989-01-01T00Z -hapitime2datetime(): Manual processing time = 0.0022s, Input = 1989-01-01T00Z, fmt = %Y-%m-%dT%HZ +hapitime2datetime(): Manual processing time = 0.0009s, Input = 1989-001T00Z, fmt = %Y-%jT%HZ +hapitime2datetime(): Pandas processing time = 0.0015s, first time = 1989-01-01T00Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00Z -hapitime2datetime(): Manual processing time = 0.0019s, Input = 1989-001T00:00Z, fmt = %Y-%jT%H:%MZ -hapitime2datetime(): Pandas processing failed, first time = 1989-01-01T00:00Z -hapitime2datetime(): Manual processing time = 0.0024s, Input = 1989-01-01T00:00Z, fmt = %Y-%m-%dT%H:%MZ +hapitime2datetime(): Manual processing time = 0.0010s, Input = 1989-001T00:00Z, fmt = %Y-%jT%H:%MZ +hapitime2datetime(): Pandas processing time = 0.0012s, first time = 1989-01-01T00:00Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.Z -hapitime2datetime(): Manual processing time = 0.0017s, Input = 1989-001T00:00:00.Z, fmt = %Y-%jT%H:%M:%S.Z -hapitime2datetime(): Pandas processing time = 0.0009s, first time = 1989-01-01T00:00:00.Z -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1989-01-01T00:00:00.0Z +hapitime2datetime(): Manual processing time = 0.0010s, Input = 1989-001T00:00:00.Z, fmt = %Y-%jT%H:%M:%S.Z +hapitime2datetime(): Pandas processing time = 0.0004s, first time = 1989-01-01T00:00:00.Z +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1989-01-01T00:00:00.0Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.0Z -hapitime2datetime(): Manual processing time = 0.0017s, Input = 1989-001T00:00:00.0Z, fmt = %Y-%jT%H:%M:%S.%fZ -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1989-01-01T00:00:00.00Z +hapitime2datetime(): Manual processing time = 0.0010s, Input = 1989-001T00:00:00.0Z, fmt = %Y-%jT%H:%M:%S.%fZ +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1989-01-01T00:00:00.00Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.00Z -hapitime2datetime(): Manual processing time = 0.0010s, Input = 1989-001T00:00:00.00Z, fmt = %Y-%jT%H:%M:%S.%fZ -hapitime2datetime(): Pandas processing time = 0.0013s, first time = 1989-01-01T00:00:00.000Z +hapitime2datetime(): Manual processing time = 0.0006s, Input = 1989-001T00:00:00.00Z, fmt = %Y-%jT%H:%M:%S.%fZ +hapitime2datetime(): Pandas processing time = 0.0006s, first time = 1989-01-01T00:00:00.000Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.000Z -hapitime2datetime(): Manual processing time = 0.0013s, Input = 1989-001T00:00:00.000Z, fmt = %Y-%jT%H:%M:%S.%fZ -hapitime2datetime(): Pandas processing time = 0.0012s, first time = 1989-01-01T00:00:00.0000Z +hapitime2datetime(): Manual processing time = 0.0005s, Input = 1989-001T00:00:00.000Z, fmt = %Y-%jT%H:%M:%S.%fZ +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1989-01-01T00:00:00.0000Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.0000Z -hapitime2datetime(): Manual processing time = 0.0009s, Input = 1989-001T00:00:00.0000Z, fmt = %Y-%jT%H:%M:%S.%fZ -hapitime2datetime(): Pandas processing time = 0.0011s, first time = 1989-01-01T00:00:00.00000Z +hapitime2datetime(): Manual processing time = 0.0005s, Input = 1989-001T00:00:00.0000Z, fmt = %Y-%jT%H:%M:%S.%fZ +hapitime2datetime(): Pandas processing time = 0.0005s, first time = 1989-01-01T00:00:00.00000Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.00000Z -hapitime2datetime(): Manual processing time = 0.0009s, Input = 1989-001T00:00:00.00000Z, fmt = %Y-%jT%H:%M:%S.%fZ -hapitime2datetime(): Pandas processing failed, first time = 1989-01-01T00:00:00.000000Z -hapitime2datetime(): Manual processing time = 0.0028s, Input = 1989-01-01T00:00:00.000000Z, fmt = %Y-%m-%dT%H:%M:%S.%fZ +hapitime2datetime(): Manual processing time = 0.0005s, Input = 1989-001T00:00:00.00000Z, fmt = %Y-%jT%H:%M:%S.%fZ +hapitime2datetime(): Pandas processing time = 0.0006s, first time = 1989-01-01T00:00:00.000000Z hapitime2datetime(): Pandas processing failed, first time = 1989-001T00:00:00.000000Z -hapitime2datetime(): Manual processing time = 0.0010s, Input = 1989-001T00:00:00.000000Z, fmt = %Y-%jT%H:%M:%S.%fZ +hapitime2datetime(): Manual processing time = 0.0005s, Input = 1989-001T00:00:00.000000Z, fmt = %Y-%jT%H:%M:%S.%fZ test_error_conditions(): Checking that hapitime2datetime(1999) throws HAPIError diff --git a/hapiclient/test/test_hapitime2datetime.py b/hapiclient/test/test_hapitime2datetime.py index 9316772..df9495c 100644 --- a/hapiclient/test/test_hapitime2datetime.py +++ b/hapiclient/test/test_hapitime2datetime.py @@ -2,7 +2,7 @@ # pytest -v test_hapitime2datetime.py # To test a single function on the command line, use, e.g., -# pytest -v est_hapitime2datetime.py -k test_parse_string_input +# pytest -v test_hapitime2datetime.py -k test_parse_string_input # To use in program, use, e.g., # from hapiclient.test.test_hapitime2datetime import test_parse_string_input @@ -15,8 +15,9 @@ from hapiclient.util import log # Create empty file -with open(os.path.realpath(__file__)[0:-2] + "log", "w") as f: pass -logging = open(os.path.realpath(__file__)[0:-2] + "log", "a") +logfile = os.path.splitext(__file__)[0] + ".log" +with open(logfile, "w") as f: pass +logging = open(logfile, "a") expected = '1970-01-01T00:00:00.000000Z' diff --git a/hapiclient/test/test_hapitime_reformat.log b/hapiclient/test/test_hapitime_reformat.log index a6261fb..8424336 100644 --- a/hapiclient/test/test_hapitime_reformat.log +++ b/hapiclient/test/test_hapitime_reformat.log @@ -7750,3 +7750,263571 @@ hapitime_reformat(): given: 1989Z hapitime_reformat(): converted: 1989-01Z hapitime_reformat(): ref fmt: %Y-%mZ hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989Z +hapitime_reformat(): ref fmt: %YZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.000Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.000Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.0Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-001T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.0Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00:00.Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00:00.Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00:00.Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%M:%S.Z +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00:00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00:00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00:00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00:00Z +hapitime_reformat(): ref fmt: %Y-%jT%H:%MZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001T00Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01T00Z +hapitime_reformat(): ref fmt: %Y-%m-%dT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001T00Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001T00Z +hapitime_reformat(): ref fmt: %Y-%jT%HZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-001Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01-01Z +hapitime_reformat(): ref fmt: %Y-%m-%dZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989-01Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-001Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-001Z +hapitime_reformat(): ref fmt: %Y-%jZ +hapitime_reformat(): ---- +hapitime_reformat(): ref: 1989-01Z +hapitime_reformat(): given: 1989Z +hapitime_reformat(): converted: 1989-01Z +hapitime_reformat(): ref fmt: %Y-%mZ +hapitime_reformat(): ---- diff --git a/hapiclient/test/test_hapitime_reformat.py b/hapiclient/test/test_hapitime_reformat.py index 6cadeff..9ceb4bb 100644 --- a/hapiclient/test/test_hapitime_reformat.py +++ b/hapiclient/test/test_hapitime_reformat.py @@ -20,9 +20,6 @@ def test_hapitime_reformat(): "1989-001T00:00Z", "1989-01-01T00:00Z", - "1989-001T00:00:00.Z", - "1989-01-01T00:00:00.Z", - "1989-01-01T00:00:00.0Z", "1989-001T00:00:00.0Z", @@ -56,7 +53,7 @@ def test_hapitime_reformat(): if "T" in dts[i]: dts.append("1989-001T" + dts[i].split("T")[1]) - logging = open(os.path.realpath(__file__)[0:-2] + "log", "w") + logging = open(os.path.realpath(os.path.splitext(__file__)[0]) + ".log", "a") # truncating for i in range(len(dts)): @@ -75,7 +72,5 @@ def test_hapitime_reformat(): given_form_modified = hapitime_reformat(form_to_match, given_form, logging=logging) assert given_form_modified == form_to_match - logging.close() - if __name__ == '__main__': test_hapitime_reformat() diff --git a/hapiclient/util.py b/hapiclient/util.py index 67e9dd7..0d508d7 100644 --- a/hapiclient/util.py +++ b/hapiclient/util.py @@ -103,6 +103,15 @@ def pythonshell(): return shell +def unicode_error_message(name): + import sys + msg = "" + if sys.version_info[0:2] <= (3, 5): + if not all(ord(char) < 128 for char in name): + msg = "hapiclient cannot handle Unicode dataset or parameter names (" + str(name.encode('utf-8')) + ") for Python < 3.6 on Windows." + return msg + + def warning_test(): """For testing warning function.""" @@ -143,10 +152,18 @@ def warning(*args): fname = path.basename(fname) + def prefix(): + import platform + prefix = "\x1b[31mHAPIWarning:\x1b[0m " + if platform.system() == 'Windows' and pythonshell() == 'shell': + prefix = "HAPIWarning: " + + return prefix + # Custom warning format function def _warning(message, category=UserWarning, filename='', lineno=-1, file=None, line=''): if category.__name__ == "HAPIWarning": - stderr.write("\x1b[31mWarning in " + fname + "\x1b[0m: " + str(message) + "\n") + stderr.write(prefix() + str(message) + "\n") else: # Use default showwarning function. showwarning_default(message, category=UserWarning, @@ -201,15 +218,22 @@ def error(msg, debug=False): fname = path.basename(fname) #line = stack()[1][2] + def prefix(): + import platform + prefix = "\033[0;31mHAPIError:\033[0m " + if platform.system() == 'Windows' and pythonshell() == 'shell': + prefix = "HAPIError: " + + return prefix + def exception_handler_ipython(self, exc_tuple=None, filename=None, tb_offset=None, exception_only=False, running_compiled_code=False): - - #import traceback + exception = sys.exc_info() if not debug and exception[0].__name__ == "HAPIError": - sys.stderr.write("\033[0;31mHAPIError:\033[0m " + str(exception[1])) + sys.stderr.write(prefix() + str(exception[1])) else: # Use default showtraceback_default(self, exc_tuple=None, @@ -224,7 +248,7 @@ def exception_handler_ipython(self, exc_tuple=None, def exception_handler(exception_type, exception, traceback): if not debug and exception_type.__name__ == "HAPIError": - print("\033[0;31mHAPIError:\033[0m %s" % exception) + print("%s%s" % (prefix(), exception)) else: # Use default. sys.__excepthook__(exception_type, exception, traceback) @@ -273,6 +297,7 @@ def urlopen(url): """Wrapper to request.get() in urllib3""" import sys + import urllib3 from json import load # https://stackoverflow.com/a/2020083 @@ -282,27 +307,35 @@ def get_full_class_name(obj): return obj.__class__.__name__ return module + '.' + obj.__class__.__name__ - import urllib3 c = " If problem persists, a contact email for the server may be listed " c = c + "at http://hapi-server.org/servers/" + msg = ''; try: http = urllib3.PoolManager() res = http.request('GET', url, preload_content=False, retries=2) if res.status != 200: try: jres = load(res) - if 'status' in jres: - if 'message' in jres['status']: - error('\n%s\n %s\n' % (url, jres['status']['message'])) - error("Problem with " + url + \ - ". Server responded with non-200 HTTP status (" \ + except Exception as e: + msg = "Problem with " + url + \ + ". Server responded with non-200 HTTP status (" \ + str(res.status) + \ - ") and invalid HAPI JSON error message in response body." + c) - except: - error("Problem with " + url + \ + ") and an invalid JSON in response body." + c + + if msg == '' and 'status' in jres: + if 'message' in jres['status']: + msg = '%s\n' % (jres['status']['message']) + + if msg == '': + msg = "Problem with " + url + \ ". Server responded with non-200 HTTP status (" + \ str(res.status) + \ - ") and no HAPI JSON error message in response body." + c) + ") but no JSON without HAPI error message in response body." + c + + raise HAPIError + + except HAPIError: + error(msg) except urllib3.exceptions.NewConnectionError: error('Connection error for : ' + url + c) except urllib3.exceptions.ConnectTimeoutError: @@ -318,7 +351,7 @@ def get_full_class_name(obj): except urllib3.exceptions.HTTPError as e: error('Exception ' + get_full_class_name(e) + " for: " + url) except Exception as e: - error(type(sys.exc_info()[1]).__name__ + ': ' \ + print(type(sys.exc_info()[1]).__name__ + ': ' \ + str(e) + ' for URL: ' + url) return res diff --git a/setup.py b/setup.py index bb87296..258ec21 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,10 @@ install_requires.append("pandas>=0.23,<0.25") install_requires.append("numpy<1.17") install_requires.append("pyparsing<3") - install_requires.append("zipp<3") install_requires.append("kiwisolver<=1.1") if sys.argv[1] == 'develop': - install_requires.append("deepdiff<3.3.0") + install_requires.append("deepdiff") if sys.version_info < (3, 6): install_requires.append("pytest<5.0.0") else: @@ -30,13 +29,14 @@ # version is modified by misc/version.py (executed from Makefile). Do not edit. setup( name='hapiclient', - version='0.1.9b0', + version='0.2.7b1', author='Bob Weigel', author_email='rweigel@gmu.edu', packages=find_packages(), url='http://pypi.python.org/pypi/hapiclient/', license='LICENSE.txt', description='Interface to Heliophysics data server API', - long_description=open('README.rst').read(), + long_description=open('README.md').read(), + long_description_content_type='text/markdown', install_requires=install_requires ) diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..6d71dab --- /dev/null +++ b/tox.ini @@ -0,0 +1,25 @@ +[tox] +envlist = py27,py35,py36,py37,py38,py39,py310,py311 +skip_missing_interpreters = true + +[testenv:repo-test] +commands = + pip install pytest deepdiff + +[testenv:long-test] +deps = + pytest + deepdiff +commands = + python -m pytest -v -m 'long' hapiclient/test/test_hapi.py + +[testenv:short-test] +deps = + pytest + deepdiff +commands = + python -m pytest -v -m 'short' hapiclient/test/test_hapi.py + python -m pytest -v hapiclient/test/test_chunking.py + python -m pytest -v hapiclient/test/test_hapitime2datetime.py + python -m pytest -v hapiclient/test/test_datetime2hapitime.py + python -m pytest -v hapiclient/test/test_hapitime_reformat.py